**This is what I’ve been doing It’s not going
Please I need help
const arr1 = [‘JAN’, ‘FEB’, ‘MAR’, ‘APR’, ‘MAY’];
let arr2;
arr2 = [‘JAN’, ‘FEB’, ‘MAR’, ‘APR’, ‘MAY’]; // Change this line
console.log(…arr2);
const arr1 = ['JAN', 'FEB', 'MAR', 'APR', 'MAY'];
let arr2;
arr2 = ['JAN', 'FEB', 'MAR', 'APR', 'MAY']; // Change this line
console.log(...arr2);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36
Challenge: ES6 - Use the Spread Operator to Evaluate Arrays In-Place
Link to the challenge: