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 Arrays Store Multiple Values in an Array Access Array Elements by Index

this looks perfectly correct to me. what am i overlooking?

script.js
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] );

I 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].

1 Answer

Jason Miller
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jason Miller
Full Stack JavaScript Techdegree Graduate 32,219 Points

So 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.