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 trialCarl Chiang
284 PointsI 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)
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
kjvswift93
13,515 PointsI 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)
kjvswift93
13,515 PointsEverything 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
284 PointsStill says "Your todo has a wrong variable in it" :\
Carl Chiang
284 PointsCarl Chiang
284 PointsNow I understand what happened! THANK YOU!
Carl Chiang
284 PointsCarl Chiang
284 PointsNow I understand what happened! THANK YOU!
Logan Connor
3,023 PointsLogan Connor
3,023 PointsI have the same problem. What was happening incorrectly here?