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.

Ronald James
Courses Plus Student 463 Pointswhats wrong?
whats wrong with my code?
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0
// Enter your code below
while counter > 6 {
print(sum)
}
2 Answers

John Lack-Wilson
8,169 PointsI've just tried your code in the challenge and the error it gives is:
"Make sure you increment the counter variable inside the loop! If you don't, the code loops infinitely and the challenge times out!"
So you might want to increment the counter variable before the ending closing brace of the while loop.
It's always worth reading error messages when programming as they generally give a good indication of what is going wrong.

Gavin Hobbs
5,205 PointsHey Ronald James this is what your code should look like...
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0
// Enter your code below
while counter < 7 {
// Add the next number in the array to the sum then assign _that value_ to the 'sum' variable
// It's kind of hard to understand but if you look up '+=' you should be able to figure it out
sum += numbers[counter]
// Add 1 to the 'counter' variable so it isn't an infinite loop
counter += 1
}
Hope this helps!
G'day
- Gavin