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 Array Iteration Methods Array Iteration Practice forEach()

Eduardo Colombo
Eduardo Colombo
1,496 Points

My code is correct

When I get this code running in my machine or through the web it is running as well as expected, but your platform is showing an error. Could you help me with that?

Please share code.

Eduardo Colombo
Eduardo Colombo
1,496 Points

const numbers = [1,2,3,4,5,6,7,8,9,10]; let times10 = [];

// times10 should be: [10,20,30,40,50,60,70,80,90,100] // Write your code below

numbers.forEach(n => { times10.push(n*10); });

That code is passing for me on the platform. Maybe try a page refresh or restart the challenge.

Eduardo Colombo
Eduardo Colombo
1,496 Points

Now it works for me too. Weird

Eduardo Colombo
Eduardo Colombo
1,496 Points

BTW, Thanks for helping me with that

1 Answer

np! You can mark this question as solved by selecting a "best answer". :smile: