What value is obtained when the following code is executed?
const arr = [1, 2, 3];
const newArr = arr.concat([4, 5]);
console.log(newArr[4]);
What value is obtained when the following code is executed?
const arr = [1, 2, 3];
const newArr = arr.concat([4, 5]);
console.log(newArr[4]);