Manipulating Complex Objects - Get A Hint Button Not Working

Tell us what’s happening:

It’s telling me the bracket on line 14 (underneath the “Add record here” comment) is out of place. How am I supposed to format this?

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": "Savage",
    "title": "ISSA",
    "release_year": 2017,
    "formats": [
      "CD",
      "Digital"]
  }
];

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:
https://www.freecodecamp.org/challenges/manipulating-complex-objects

You have two objects in an array. Items in an array must be separated by commas.

1 Like

Just saw that! Much appreciated!