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

Use the array method that combines all of the elements inside the planets array into a single string. The final string s

I keep getting an error that tells me to remember to log my solution into the console.

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

1 Answer

Hi William!

This passes both:

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

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

const pos = planets.indexOf('Saturn');
console.log(pos);

This also passes:

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

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

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

I hope that helps.

Stay safe and happy coding!