const arr1 = ['one', 'two']; const arr2 = [...arr1, 'three', 'four', 'five']; console.log(arr2); // Output: // ["one", "two", "three", "four", "five"]