Can i get help where im getting wrong - Manipulating Complex Objects

Tell us what’s happening:

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": "kondas",
  "title": "truth of ours",
   "release_year": 2017,
   "formats": [ 
   "CS", 
   "8T", 
   "LP" ],
  }
];

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:58.0) Gecko/20100101 Firefox/58.0.

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

Haiiiiyo! You’re actually almost there—the only thing that’s missing is a comma between the objects. I still forget it sometimes after coding for many months. :smile:

1 Like

thanks @honmanyau :slight_smile: