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 trialnick f
1,165 PointsStuck on Challenge Two For in Loops
Would appreciate the correct/optimum code, every way I have tried hasn't worked.
// Enter your code below
var results: [Int] = []
for numbers in 1...10 {
multiplier = numbers * 6
results = [multiplier]
}
1 Answer
Nathan Tallack
22,160 PointsVery close. You need to put a let infront of multiplier when you are declaring it as a new constant inside your for loop. You also need to use the .append method to add the multiplier to the array.
Your code would look like this then.
var results: [Int] = []
for numbers in 1...10 {
let multiplier = numbers * 6
results.append(multiplier)
}