Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript AJAX Basics (retiring) Programming AJAX Finish the JSON File

AJAX CHALLENGE 1/1

Add 3 more song objects to this JSON file, each with "title" and "artist" attributes.

[ 
  {
    "title" : "My Way",
    "artist" : "Frank Sinatra",

    "title" : "Boom",
    "artist" : "Bum",

    "title" : "Club",
    "artist" : "Bub",

    "title" : "Snub",
    "artist" : "Tub"
     }
]

*I keep getting a error saying there should be 4 songs. Am I missing something?

Jacques Vincilione
Jacques Vincilione
17,292 Points

I believe you're missing curly braces.

[
 { "title" : "My Way", "artist" : "Frank Sinatra"},

{"title" : "Boom",
"artist" : "Bum"},

{"title" : "Club",
"artist" : "Bub"},

{"title" : "Snub",
"artist" : "Tub"}
]

1 Answer

Stefan Osorio
Stefan Osorio
16,419 Points

Yes - every object (in this case, every song) needs to be enclosed by curly braces and separated by commas. As you have only one pair of curly braces, there is only one object - hence the error.