As we've found, the easiest way to learn the new ES6 syntax is to see the old way of writing JavaScript.
const expense = {
type: "Business",
amount: "$45 USD"
};
const type = expense.type;
const amount = expense.amount;
ugh. So much redundancy! We have const, type, and amount written three times. Using