Help for this coding

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,
    "new_album":{
      "artist":"nirmal",
      "title":"skn",
      "release_year":2018
    }
   
  }
  // Add record here
];

Your browser information:

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

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

You need to add a record after the curly bracket where the comment is. You are adding a new album to the record they give you. You need to create a new one after the given one and inside the array( squared brackets).