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 trialJustin Janes
5,904 Pointsit looks like it doesn't see the results array to append the multiplier to as an array.
the syntax is someArray.append(ints) ??
// Enter your code below
var results: [Int] = []
for results in 1...10 {
let multiplier = results * 6
results.append(multiplier)
}
3 Answers
jcorum
71,830 PointsJustin, unfortunately you can't use results as both the name of the array and the loop variable. Try this instead:
for num in 1...10 {
let multiplier = num * 6
results.append(multiplier)
}
Justin Janes
5,904 PointsGah thank you I wasn't thinking clearly about that being the name for the loop variable itself.
jcorum
71,830 PointsJustin, don't want to nag, but not a good idea naming num * 6 multiplier when 6 is really the multiplier. Suggest you do something like this instead:
for num in 1...10 {
let multiplier = 6
results.append(num * multiplier)
}