Manipulating Complex Objects Help Error

Tell us what’s happening:

If you don’t add the coma, ABOVE the line which says “Add record here” or it won’t pass. Maybe the part about adding a coma should be put in bold? Obviously I eventually figured out the problem, but the “get a hint” wasn’t helpful at all, it told me there was no page.

Your code so far

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

Your browser information:

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

Link to the challenge:

Items in an array must always be separated by commas.