How can you merge two objects into a new object using the spread syntax?
Object.merge(obj1, obj2)
{ ...obj1, ...obj2 }
[...obj1, ...obj2]
obj1.spread(obj2)