Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Gennaro 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!