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 trialEduardo Colombo
1,496 PointsMy 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?
Eduardo Colombo
1,496 Pointsconst 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); });
Adam N
70,280 PointsThat code is passing for me on the platform. Maybe try a page refresh or restart the challenge.
Eduardo Colombo
1,496 PointsNow it works for me too. Weird
Eduardo Colombo
1,496 PointsBTW, Thanks for helping me with that
1 Answer
Adam N
70,280 Pointsnp! You can mark this question as solved by selecting a "best answer".
Adam N
70,280 PointsAdam N
70,280 PointsPlease share code.