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 Basics (retired) Collections Modifying an Array

Carl Chiang
Carl Chiang
284 Points

I checked my code in XCODE and it was working fine for this activity but am I doing something wrong?

var todo = ["Learn Swift", "Build App", "Deploy App"] todo.append("Debug App") todo.append("Fix Bugs") todo.removeAtIndex(2) let item = todo.removeAtIndex(2) todo.insert ("Learn iOS", atIndex: 1)

arrays.swift
var todo = ["Learn Swift", "Build App", "Deploy App"]
todo.append("Debug App")
todo.append("Fix Bugs")
todo.removeAtIndex(2)
let item = todo.removeAtIndex(2)
todo.insert ("Learn iOS", atIndex: 1)

2 Answers

I don't know what to say. I just tried it again and it passed. Double check you have your answer exactly like this:

var todo = ["Learn Swift", "Build App", "Deploy App"]
todo.append("Debug App")
todo.append("Fix Bugs")
let item = todo.removeAtIndex(2)
todo.insert("Learn iOS", atIndex: 1)
Carl Chiang
Carl Chiang
284 Points

Now I understand what happened! THANK YOU!

Carl Chiang
Carl Chiang
284 Points

Now I understand what happened! THANK YOU!

Logan Connor
Logan Connor
3,023 Points

I have the same problem. What was happening incorrectly here?

Everything is fine with one exception. You need to eliminate the fourth line - todo.removeAtIndex(2).

var todo = ["Learn Swift", "Build App", "Deploy App"]
todo.append("Debug App")
todo.append("Fix Bugs")
// todo.removeAtIndex(2) needs to be removed 
let item = todo.removeAtIndex(2)
todo.insert ("Learn iOS", atIndex: 1)
Carl Chiang
Carl Chiang
284 Points

Still says "Your todo has a wrong variable in it" :\