const arr1 = ['JAN', 'FEB', 'MAR', 'APR', 'MAY']; let arr2; arr2 = [...arr1]; console.log(arr2); // ['JAN', 'FEB', 'MAR', 'APR', 'MAY'];