I used another (my) way to store the elements of some array in another as a spread method. I used join method for this way, but the array contains only one. Here's my code:
const arr = [1, 2, 3];
const newArray = [eval(arr.join(', ')), 4, 5]
console.log(newArray) // [3, 4, 5]