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 trial

iOS Swift 2.0 Collections and Control Flow Control Flow With Loops For In Loops

Think I'm lost. Looking for a hand.

I can make a for in loop that will work out the 6 times table and print it, but I'm lost about pinning it to var results. Can you clarify or maybe point me back to which video or even which chapter in the Swift documentation that can help me out?

1 Answer

We can use the append method to stick the new number onto the end of the array each time.

for multiplier in 1...10 {
  results.append(multiplier * 6)
}