Javascript manipulating complex objects

var myMusic = [

  {

    "artist": "Billy Joel",

    "title": "Piano Man",

    "release_year": 1973,

    "formats": [

      "CD",

      "8T",

      "LP"

    ],

    "gold": true

  }

  {   "artist": "Nirvana",

  "title": "Nevermind",

  "release_year": 1991,

  "formats": [

    "CD",

    "8T",

    "LP"

    ],

    "gold": true

 }

]

this one seems easy but i cant quite get it. does anyone see my mistake?

Hello there,

Could you be specific as to what you are trying to do? The code you posted does not do anything. It is just some data.

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.