Tell us what’s happening:
creating 2 objects and two arrays…Stuck…Do I need to do[1] and so on added to my second object? Arrays?
Your code so far
var myMusic = [
{
"artist": "Billy Joel",
"title": "Piano Man",
"release_year": 1973,
"formats": [
"CD",
"8T",
"LP"
],
"gold": true
}
{
"artist": "SOUP",
"title": "Bart",
"realease_year": 1982,
"formats": [
"CD",
"Tape",
"WAZOO"
],
"gold": true
}// Add record here
];
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects