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.

Nils Garland
18,416 Pointshelp me please i dont understand?
help me
// Enter your code below
var results: [Int] = []
for multiplier in 1...10{
print("\(multiplier) times 6 is equal to \(multiplier * 6)")
}
1 Answer

agreatdaytocode
24,757 PointsNils,
What this For-In Loop is doing is taking our number and assigning it a number 1 through 10. Each time multiplying that number by 6 and printing it out.
for number in 1...10{
print("\(number) times 6 is equal to \(number * 6)") // number * 6
}
1 times 6 is equal to 6 2 times 6 is equal to 12 3 times 6 is equal to 18 4 times 6 is equal to 24 5 times 6 is equal to 30 6 times 6 is equal to 36 7 times 6 is equal to 42 8 times 6 is equal to 48 9 times 6 is equal to 54 10 times 6 is equal to 60
John Carty
6,444 PointsJohn Carty
6,444 Points