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 trialGennaro Turco
2,557 PointsHow do I iterate?
I don't get how do I iterate the items in the loop in this case? Do I add them my self in the array "results"? Or there is an operation that makes it doing it for me! Please Help
// Enter your code below
var results: [Int] = []
for multiplier in 1...10{
}
2 Answers
David Papandrew
8,386 PointsHi Gennaro,
You want to use the "append" method on the results Array to append 6 * multiplier.
Here is how you do it:
var results: [Int] = []
for multiplier in 1...10 {
results.append(multiplier * 6)
}
Gennaro Turco
2,557 PointsIt's so easy when someone's tells you how it's done, it's like a magic trick!!
Thank you David, now it's clear!