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 JavaScript Loops, Arrays and Objects Tracking Multiple Items with Arrays Two-Dimensional Arrays

Tadjiev Codes
Tadjiev Codes
9,626 Points

https://w.trhou.se/6ofkxetkfb (the snapshot) Hi fellows, What am I doing wrong? Thanks

The list doesn't appear once I load the code

1 Answer

You have two issues;

1) You are missing the singers in your playlist

var playList = [
  ['I Did It My Way', 'Frank Sinatra'],
  ['Respect', 'Aretha Franklin'],
  ['Imagine', 'John Lennon'],
  ['Born to Run', 'Bruce Springsteen'],
  ['Louie Louie', 'The Kingsmen'],
  ['Maybellene', 'Chuck Berry']
];

2) You are missing a + between songs[i][1] and '</li>' in this line:

listHTML += '<li>' + songs[i][0] + 'by' + songs[i][1] '</li>';