How can you merge multiple arrays into a new array using the spread syntax?
arr1.spread(arr2)
[...arr1, ...arr2]
arr1.merge(arr2)
arr1.concat(arr2)