0 / 60 seg.

What is printed when the following code is executed?

const array1 = [1, 2, 3];
const array2 = [...array1, 4, 5];
console.log(array2[4]);