What is the object here?

Tell us what’s happening:
In the description of this challenge, I’m confused as to what the object is. below the sample code, it says “this is an array which contains one object inside”. so myMusic is an array and the code in the array altogether forms one object?

As you can see, I added another album record with several properties. Is this another object in the myMusic array? Or is myMusic an object in and of itself containing two arrays as its properties (with both arrays containing several ‘sub-properties’)?

Your code so far

var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CD",
      "8T",
      "LP"
    ],
    "gold": true
  },
  // Add record here
  {
  "artist": "BROCKHAMPTON",
  "title": "SATURATION IV",
  release_year: 1977,
  "formats": [
    "Digital",
    "LP",
    "Vinyl",
    "CD"
  ]
  }

];

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.108 Safari/537.36.

thank you! yes that’s what i was confused about. now i understand. thank you again sir