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 trialCourtney Cassar
1,407 PointsI'm not sure what operation they want me to execute for the while statement. Is it for the variable above?
Am I meant to manually type in each addition of Ints in numbers??
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0
// Enter your code below
while counter < numbers.count {
}
1 Answer
lvwdhydynw
6,443 PointsHi Courtney!
Even though I have passed this challenge, it took me a little bit to understand what's going on! :D
You are doing well so far. Now, you will work inside of the while loop. Your task is to add every numbers in array to the variable sum. For this, use the counter variable :)
P.S.: A little extra - I wanted to solve this by adding always the first number of an array and then deleting it so in the next round I would get another number. It would have worked, hadn't the array been a constant :)