How can you make a shallow copy of an object using the spread syntax?
Object.clone(object)
{ ...object }
Object.assign({}, object)
Object.create(object)