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 Collections and Control Flow Control Flow With Loops For In Loops

need help with this

i need help with resolving this problem...

2 Answers

Jhoan Arango
Jhoan Arango
14,575 Points

Hello Kolade,

I would really like to see you try, and show us your coding on here based on what you've learned.

Here is the code for what the challenge is asking:

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

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

But keep in mind that just asking how to solve an issue is not the best way of doing it. Just give it a try, post your current code on here, and we can help you find where your problem is, this way you can focus more on what you've done wrong and not on how to just solve it.

Good luck

thank you for your response. your'e very correct. I actually solve it and clear the screen before asking for help but your approach makes alot of sense. thanks again for helping