0 / 60 seg.

What does the following code return?

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