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.

Idris Abdulwahab
Courses Plus Student 2,961 PointsWhile loop
I'm trying to compute the sum of an array of numbers using a while loop. The task is to use the value of counter as an index value, retrieve each value from the array and add it to the value of sum.
For example: sum = sum + newValue. Or you could use the compound addition operator sum += newValue where newValue is the value retrieved from the array.
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0
// Enter your code below
while counter <= numbers.count {
sum += counter
counter += 1
}
1 Answer

Gavin Sevareid
3,121 PointsHello, Idris.
When I was working on this, I had the same issue. What I changed was this line of code:
sum += counter
to:
sum += numbers[counter] or sum = sum + numbers[counter].
The reason being the addition of the numbers, and you are going through each one through counter. If you need more clarification, I am happy to help.