What will be the output of this code?
const arr1 = [2, 4, 6]; const arr2 = [3, 5, 7]; console.log([...arr1, ...arr2]);
[2, 3, 4, 5, 6, 7]
[3,5,7,2,4,6]
[3, 5, 7, 2, 4, 6]
[2, 4, 6, 3, 5, 7]
[[2, 4, 6], [3, 5, 7]]