Code so far
var myMusic = [
{
"artist_": "Billy Joel",
"title": "Piano Man",
"release_year": 1973,
"formats": [
"CS",
"8T",
"LP" ],
"gold": true,
}
// Add record here
];
Need to add a new album to the myMusic array. Add artist and title strings, release_year number, and a formats array of strings.
Help !!