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.

Danny Balentine
500 PointsMy code wont run...
I have tried to solve this code challenge, but when i go to input my answer it wont check it. Could someone tell me if my code is right or not so i can move on.
let numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
var index = 0
while index < numbers.count{println(numbers[index])}
3 Answers

Michael Hulet
47,869 PointsYour code appears to not be running because it runs forever, and the checking server hangs up. The reason it runs forever is because you never increment the index
variable. A working version would look like this:
let numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
var index = 0
while index < numbers.count{
println(numbers[index])
//You need to add 1 to index every time the loop runs, so it doesn't run forever
index++
}

John Magee
Courses Plus Student 9,058 PointsHow does index increment?

Danny Balentine
500 PointsThanks a ton mike