Manipulating Complex Objects - bug or something? Please help

Tell us what’s happening:

This is really annoying me, this gives me an error and I don’t know why as I’m convinced I’m correct as its just a basic challenge…

Your code so far

var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CS", 
      "8T", 
      "LP" ],
    "gold": true
  }
  
  {
    "artist": "Arctic Monkeys",
    "title": "Brianstorm",
    "release_year": 2007,
    "formats": [ 
      "CD", 
      "Vinyl", 
      "LP" ],
    "gold": true
  }
];

Your browser information:

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

Link to the challenge:

You need to separate the objects in the array with a comma.

2 Likes

thank you - what a nightmare that was lol