How can copy elements of arr1 to arr2?

who knows how can i solve this problems?how can copy elements of arr1 to arr2?


const arr1 = ['JAN', 'FEB', 'MAR', 'APR', 'MAY'];
let arr2;
(() => {
  "use strict";
  arr2 = []; // 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/70.0.3538.102 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/use-the-spread-operator-to-evaluate-arrays-in-place

Hey @RonnyNdZyh
The name of the challenge itself says you to use spread operator.
See if you can find out how to use spread operator to solve the problem.

Let us know if you still have the problem.

All the best.

thank you, I have solved the problem.
i confused rest operator and spread operator.now i got them.