Tell us what’s happening:
I’ve entered the code according to directions, and I even checked the “hint” solution and made sure mine was formatted the same way. For some reason, the test will still not allow me to pass.
EDIT: It was literally a missing comma. Ugh. Fixed!
Your code so far
var myMusic = [
{
"artist": "Billy Joel",
"title": "Piano Man",
"release_year": 1973,
"formats": [
"CD",
"8T",
"LP"
],
"gold": true
}
// Add record here
{
"artist": "Mariana's Trench",
"title": "Astoria",
"release_year": 2015,
"formats": [
"CD",
"vinyl",
".mp4"
],
}
];
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulating-complex-objects