0 / 60 seg.

What is printed in the following code snippet?

const map = new Map([[1, 'one'], [2, 'two']]);
map.set(1, 'ONE');
console.log(map.get(1));