What is destructuring, conceptually?
extract data from/access values in arrays and objects
What is the syntax for Object destructuring?
curly braces
What is the syntax for Array destructuring?
brackets
How can you tell the difference between destructuring and creating Object/Array literals?
variable name is on the left when creating, whereas destructuring the variable that we are referencing is on the right