My music should have at least two elements

Tell us what’s happening:
Describe your issue in detail here.

what are those two elements?
Your code so far


var myMusic = [
{
  "artist": "Billy Joel",
  "title": "Piano Man",
  "release_year": 1973,
  "formats": [
    "CD",
    "8T",
    "LP"
  ],
  "gold": true
}
];
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36

Challenge: Manipulating Complex Objects

Link to the challenge:

That’s one album. It’s been put in an array. The task is add another album to the array, with the properties it asks for.

1 Like

Hi @Linathi23 ,

myMusic array has a single object( with properties like artist, title and so on). This is one element.

The task is to add another object similar to the previous object which should have properties like ( artist,title ,release_year , formats). below the previous object.

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