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