This is my code so far but i don’t no what is going wrong


var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CD",
      "8T",
      "LP"
    ],
    "gold": true
  },
  // Add record here
  
    "artist": "David Adewale",
    "title": "Piano Man",
    "release_year": 1963,
    "formats": [ 
      "CS", 
      "8T", 
      "LP"
     ],
    "gold": true
  }
];

I see a syntax error, you have a closing curly bracket toward the end with no matching opening one

can’t more than that as I have no idea what you need to do if you don’t post the challenge link