Manipulating complex objects please help

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

  **Your code so far**

var myMusic = [
{
  "artist": "Billy Joel",
  "title": "Piano Man",
  "release_year": 1973,
  "formats": [
    "CD",
    "8T",
    "LP"
  ],
  "gold": true
}, 
{
  "artist": "sibabalo",
"title":  "cereal Man",
"release_year": 1997,
"formats": [
  "CD" 
  
]
}
];

  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36

Challenge: Manipulating Complex Objects

Link to the challenge:

Look closely at the error message you are getting:

" formats should be an array of strings with at least two elements"

How many elements do you have in the formats array?

got it thanks :grinning: :grinning: :grinning: :grinning:

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