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 Loop Through Arrays Array Methods

Are you using the method that returns the index of a given element in an array?

Any ideas? work spaceship in the console!

script.js
const planets = ['Earth','Mars','Saturn','Mecury','Jupiter','Venus','Uranus','Neptune'];



// Directly printing the results of planets.join() to the console, without creating a new variable
console.log(planets.join(', '));
console.log(planets[2]);

2 Answers

Hi. This question can be a little confusing the way it is worded. You are passing the console.log method the planets array with the index of Saturn, but what they are looking for is for you to use a method to find the index of Saturn. This would be the indexOf method.

For example:

console.log(planets.indexOf('Saturn'));

of course, thks