You should add another object onto that one. So you need to add a , next to the curly brace and then start a new object that has a similar structure to that one.
The instructions then tell you want to use for the new object.
This is how it will look.
var myMusic = [
{
"artist": "Billy Joel",
"title": "Piano Man",
"release_year": 1973,
"formats": [
"CS",
"8T",
"LP" ],
"gold": true
}, {
// Add your new object here
}
];
You then need to use the same key value structure as in the template
var myMusic = [
{
“artist”: “Billy Joel”,
“title”: “Piano Man”,
“release_year”: 1973,
“formats”: [
“CS”,
“8T”,
“LP” ],
“gold”: true
}, {
// Add your new object here
}
];
That is my code right now