Manipulating Complex Objects 2 object JSON

Tell us what’s happening:

creating 2 objects and two arrays…Stuck…Do I need to do[1] and so on added to my second object? Arrays?

Your code so far


var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CD",
      "8T",
      "LP"
    ],
    "gold": true
  }
  {
      "artist": "SOUP",
      "title": "Bart",
      "realease_year": 1982,
      "formats": [
        "CD",
        "Tape",
        "WAZOO"
        ],
        "gold": true
        }// Add record here
];

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects

0-9 starting at 0 [ using []

var myMusic = [
{
“artist”: “Billy Joel”,
“title”: “Piano Man”,
“release_year”: 1973,
“formats”: [
“CD”,
“8T”,
“LP”
],
“gold”: true
}
var myMusic[1] = [
{
“artist[1]”: “Dat Punk”,
“title[1]”: “Homework”,
“release_year[1]”: 1997,
“formats[1]”: [
“CD”,
“Cassette”,
“LP”
],
“gold[1]”: true
}
// Add record here
];

It was due to a comma they forgot in the lesson after the first array. I made it entirely too complicated. Thank you for your help. Onward I go.