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

Stuck on Challenge Two For in Loops

Would appreciate the correct/optimum code, every way I have tried hasn't worked.

loops.swift
// Enter your code below
var results: [Int] = []

for numbers in 1...10 {

multiplier = numbers * 6

results = [multiplier]
}

1 Answer

Nathan Tallack
Nathan Tallack
22,160 Points

Very close. You need to put a let infront of multiplier when you are declaring it as a new constant inside your for loop. You also need to use the .append method to add the multiplier to the array.

Your code would look like this then.

var results: [Int] = []

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