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

Help, not sure whats wrong but I'm pretty sure this code is correct?

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]);

2 Answers

Hi Alonzo!

This is kind of a poorly worded challenge, in my book.

I would have coded it just as you have, based on the wording.

For task 1, though, evidently all they want is this:

const players = ['Toni', 'Anwar', 'Mali', 'Carlos', 'Cormac', 'Sariah'];

console.log( players[0]);

And for task 2, this passes:

const players = ['Toni', 'Anwar', 'Mali', 'Carlos', 'Cormac', 'Sariah'];

console.log( players[0]);
console.log( players[5]);

(So essentially, all they wanted was the first and last elements.)

I hope that helps.

Stay safe and happy coding!

Hey Peter I had it correct the first time, they just wanted the challenge completed in a specific order. But hey thanks for the follow up.