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 trialasia flowers
2,496 Pointsthis looks perfectly correct to me. what am i overlooking?
const players = ['Toni', 'Anwar', 'Mali', 'Carlos', 'Cormac', 'Sariah'];
console.log( players[0] );
console.log( players[1] );
console.log( players[2] );
console.log( players[3] );
console.log( players[4] );
console.log( players[5] );
1 Answer
Jason Miller
Full Stack JavaScript Techdegree Graduate 32,220 PointsSo I just did the challenge. Part one asks you to log out the first item and part two asks you to log out the last item; you're logging out everything.
Gerardo Espinoza
930 PointsGerardo Espinoza
930 PointsI got a problem in the same challenge.
instructions: On the next line, use console.log() to log the last element inside the players array.
my code: const players = ['Toni', 'Anwar', 'Mali', 'Carlos', 'Cormac', 'Sariah']; console.log(players[5])
the error message: Bummer: Use [ ] and a number to access an item in an array. For example,
players[1]
.