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