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