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 trial

iOS Swift Collections and Control Flow Control Flow With Loops Working With Loops

Yan Sim
Yan Sim
562 Points

How do you use a loop to sum up all the numbers in an array? This is in Swift 3.0.

I'm getting an error here that says that the code could not be compiled but there is no preview button above the code challenge so I'm not able to see what's wrong with it.

loops.swift
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0

// Enter your code below
while counter < numbers.count {

    var newValue = numbers[counter]
    var sum += newValue
      counter += 1
      }
Michael Liang
Michael Liang
1,209 Points

Meet the same problems soem days ago as well.I think there is a bug occured.The compile doesn't work.You can just paste these code into the playground.I can't help u,as I don't know what the question is.

1 Answer

andren
andren
28,558 Points

The loop and logic in your code is fine, the problem is this line:

var sum += newValue

var is used to declare new variables, you don't use it when referencing and changing existing variables. So just remove it like this:

let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0

// Enter your code below
while counter < numbers.count {

    var newValue = numbers[counter]
    sum += newValue
      counter += 1
      }

And you will be able to complete the challenge.

Yan Sim
Yan Sim
562 Points

Thank you Arden!