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

cant find a solution what is wrong with this challenge answer?

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

planets.join(',  ');
console.log(planets);

1 Answer

Hi Eddy!

Two issues:

1) Join doesn't transform the original array, it returns a joined string, so you have to save the result to a variable (const) or you'd have to do this:

console.log(planets.join(', '));

2) You have two spaces in your join string ( (', ') where it should be (', ') )

This passes the first challenge:

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

const joined_arr = planets.join(', ');
console.log(joined_arr);

And/but so does this:

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

console.log(planets.join(', '));

This passes both:

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

I hope that helps.

Stay safe and happy coding!