What is printed in the following code snippet?
const map = new Map([[1, 'one'], [2, 'two']]); console.log(map.get(3));
null
Error
undefined
'three'