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 trialLuca Terrigno
4,103 PointsAJAX 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?
1 Answer
Stefan Osorio
16,419 PointsYes - 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.
Jacques Vincilione
17,292 PointsJacques Vincilione
17,292 PointsI believe you're missing curly braces.