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

Uncaught Reference Error: printSongs is not defined

I keep getting Uncaught Reference Error: printSongs is not defined on line 22. Any help would be appreciated.

var playLists = [ ['Help', 'The Beatles'], ['Beautiful Day', 'U2'], ['Rose Parade', 'Elliott Smith'], ['Two Babies in Michigan', 'Fruit Bats'], ['Clementine', 'Elliott Smith'] ];

function print(message) { document.write(message); }

function printList( songs ) { var 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(playLists);

2 Answers

Broderick Lemke
Broderick Lemke
13,483 Points

Hi Andrew,

When you defined the function you called it printList and not printSongs so when you go to call it at the end it cannot find the function. Either change the name of the function to printSongs when you declare it, or in the last line call it using printList(playLists)

Thank you, Broderick! And sorry for the late reply!