0 / 60 seg.

What is the result of the following code?

const object2 = { x: 1, y: 2, z: 3 };
const copy = Object.assign({}, object2);
console.log(copy === object2);