Adding to myMusic

Tell us what’s happening:
Cant figure this one out. Its coming back as not having any props in myMusic[1]. Not really sure at all why… any help would be greatly appreciated. Don’t think I’m even on the right track. Thanks.

Your code so far

var myMusic = [
  {
    "artist": "Billy Joel",
    "title": "Piano Man",
    "release_year": 1973,
    "formats": [ 
      "CS", 
      "8T", 
      "LP" ],
    "gold": true
  }
  // Add record here
 ]; myMusic[1] = [
   {
    "artist": "lilWayne",
    "title":"Carter3",
    "release_year":2008,
    "formats":[
    "C.D.",
    "Tape",
    "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/65.0.3325.181 Safari/537.36.

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

Really don’t think I was going to figure that out tonight without the tip. Thanks much.