Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Annemarie Troost
5,735 PointsWhy isn't it printing anything on the screen
I can nog figure out why this code isn't printing anyting on the screen. Can someone help me?
var playList = [
['I Dit It My Way', 'Frank Sinatra'],
['Respect', 'Aretha Franklin'],
['Imagine', 'John Lennon'],
['Born to Run', 'Bruce Springsteen'],
['Louie Louie', 'The Kingsmen'],
['Maybellene', 'Chuck Berry']
];
function print(message) {
document.write(message);
}
Function printSongs( songs ) {
bar listHTML = '<ol>;
for ( var i = 0; i < songs.length; i += 1) {
listHTML += '<li>' + songs[i][0] + ' by ' + songs[i][1] + '</li>';
}
listHTML += '</ol>';
print(listHTML);
}
printSongs(playList);
2 Answers

Julio Andrade
Courses Plus Student 10,896 PointsYou have a few things wrong, minor mistakes. For starters on line 14 "printSong function" you have the word function capitalized. Second on line 15 instead of tying var you typed bar Lastly on like 15 again you forgot the closing quotation after the <ol> tag. Hopefully that helps

Annemarie Troost
5,735 PointsThanks Julio, my code is working now. I'm always stuck becouse of typo's.

Julio Andrade
Courses Plus Student 10,896 PointsHey it happens. There's moments when I am doing a project and I can't figure it out and I just want to punch the computer. A second set of eyes always helps. Also I would recommend using the console on your web browser, a lot of times it will actually tell you exactly what the problem is