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

I could use some help because I'm unsure as to why my code isn't working?

script.js
const planets = ['Earth','Mars','Saturn','Mercury','Jupiter','Venus','Uranus','Neptune'];
console.log(planets.indexOf('Saturn'));

2 Answers

Cameron Childres
Cameron Childres
11,817 Points

Hi Alonzo,

I think the issue is that you've removed the answer to the first part of the challenge. Put back the answer to step 1 and you should be able to pass:

const planets = ['Earth','Mars','Saturn','Mercury','Jupiter','Venus','Uranus','Neptune'];
console.log(planets.join(', '));
console.log(planets.indexOf('Saturn'));

Hey Cameron I appreciate you for that. Safe code