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.

jaden lind
300 Pointswhile loops
When I try to create a while loop I keep getting this error-- cannot invoke '++' with an argument of type 'Int' index++-- I thought you need to create a false boolean expression to close the loop.
let numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
let index = 0
while numbers.count > index {
println(numbers.count)
index++
}
2 Answers

Juan Carlos Delgado Vidal
4,762 PointsYou need to set index to a variable (var) so it can be modified
let numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
var index = 0
while numbers.count > index {
println(numbers.count)
index++
}

Michael Piercy
1,756 PointsYou're currently using 'let' to set index to 0. This sets an immutable value.
Try using 'var' instead.
var index = 0