"Build a Simple iPhone App with Swift" was retired on May 31, 2020.

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 Quickstart Arrays and Loops Create a forEach Loop

My solution shows error 'unexpected token .' . Please let me know what's wrong in my code. My code is in next step.

numbers.forEach(function(number){ let times5.push(return number*5);

});

Aakash Srivastav
seal-mask
.a{fill-rule:evenodd;}techdegree
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Points

You are doing everything right man. Just remove that 'let' and 'return' keyword.
That's giving you the unexpected token. 'let' is use to define a new variable and 'return' is no use there becuse it is use to return a value . Here you are performing operation of existing variable and pushing the resultant into the array . Here is the actual code ---

numbers.forEach(function(number){ 
    times5.push(number*5);
}

2 Answers

Aakash Srivastav
seal-mask
.a{fill-rule:evenodd;}techdegree
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Points

You are doing everything right man. Just remove that 'let' and 'return' keyword.
That's giving you the unexpected token. 'let' is use to define a new variable and 'return' is no use there becuse it is use to return a value . Here you are performing operation of existing variable and pushing the resultant into the array . Here is the actual code ---

numbers.forEach(function(number){ 
    times5.push(number*5);
}

Thanks Aakash for your reply. My code now runs by removing return and let. Previously I didn't use let. But it showed undefined times5. So I used 'let'. But anyway thanks again.