Help me out, i am finding this difficult

Manipulating Complex Objects: myMusic should have at least two elements, this is the code

var myMusic = [

  {

    "artist": "Faiz Ahmed",

    "title": "Light",

    "release_year": 2021,

    "formats": [

      "CD",

      "8T",

      "LP",

      "Youtube",

      "cassettes"

    ],

    "gold": true

  }

];

You have only one element in the array myMusic

var myMusic = [
  {"artist": "Faiz Ahmed",
    . . .
    "gold": true
  }
]

You need at least one more.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.