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

Index number ascension??

I'm trying to figure out what the index number would be for each song/artist in the for loop.

1 Answer

Steven Parker
Steven Parker
229,644 Points

There are two index numbers involved. The first selects the specific song, and the second one picks which of these you want. The title index is always 0, and the artist is always 1.

In the loop, "i" is used to select the song — so "song[i][0]" is the song's title, and "song[i][1]" is the song's artist.

I thing I get the first line of the loop, I'm more confused/wondering what would the index number be for song #2 and artist #2..etc.

Steven Parker
Steven Parker
229,644 Points

The "i" index is which song, and index numbers start at 0, so ...
song[0][0] :point_left: first song's title,      song[0][1] :point_left: first song's artist
song[1][0] :point_left: second song's title,   song[1][1] :point_left: second song's artist
song[2][0] :point_left: third song's title,     song[2][1] :point_left: third song's artist
... and so on.