Adding another record

I don’t know where is the mistake please help

Your code so far


var myMusic = [
{
  "artist": "Billy Joel",
  "title": "Piano Man",
  "release_year": 1973,
  "formats": [
    "CD",
    "8T",
    "LP"
  ],
  "gold": true
}
// Add a record here
{
  "artist": "Brenda Fassie",
  "title": "Weekend Special",
  "release_year": 1984,
  "formats": [
    "CD",
    "LP",
    "Cassette"
  ],
  "gold": true
}


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36.

Challenge: Manipulating Complex Objects

Link to the challenge:

inside an array the elements must be separated by a comma - you are missing a comma between the two objects

also, an array needs the closing square bracket, not present in your code