HELP Manipulating Complex Objects

Tell us what’s happening:
I followed the example code and fulfilled all the requirements but I cannot seem to pass this challenge.
Can someone explain to me where I am going wrong?

Your code so far

var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CS", 
      "8T", 
      "LP" ],
    "gold": true
  }
  // Add record here
];
var myMusic = [  
  {
    "artist": "linkin park",
    "title": "Hybrid theory",
    "release_year": 2000,
    "formats": [
      "cd",
      "ep",
      "lp"],
    "gold": true
  }
  ];

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/manipulating-complex-objects