JS objects are second data structure after arrays.
Just like arrays, objects are going to help store multiple pieces of data together in some sort of structure. Bur unlike arrays where the whole point is to order our data.
Our data is stored using what we call key value pairs or properties. A property is just two pieces of information. A key like a label and then a value. And they form a pair and an object is just a bunch of these pairs.