What is destructuring, conceptually?
Assigning properties of an object 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] = getScores();
How can you tell the difference between destructuring and creating Object/Array literals?
Objects have { } and arrays use [ ]