What is destructuring, conceptually?
Destructuring is when you assign properties of objects and elements of arrays to individual variables
What is the syntax for Object destructuring?
let { property1: variable1, property2: variable2 } = object;
What is the syntax for Array destructuring?
let [x, y, z] = arrayName;
How can you tell the difference between destructuring and creating Object/Array literals?