We create objects similarly to variables, with the keyword var followed by a name, an equal sign, and curly braces {}. Like var cat = {};.
var
{}
var cat = {};
Make sure to pick var followed by cat and then =, {}, ;.
cat
=
;