How can you concatenate two arrays using the spread syntax?
arr1.spread(arr2)
[...arr1, ...arr2]
arr1 + arr2
arr1.concat(arr2)