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 trialJosh Smith
1,049 PointsI don't know where I'm going wrong :( I've followed the .insert code to the letter (I think...) but I'm still wrong!
help!
var todo = ["Learn Swift", "Build App", "Deploy App"]
todo += ["Debug App", "Fix Bugs"]
todo.removeAtIndex(2)
let item = "Deploy App"
todo.insert("Learn iOS", atIndex:(1)
todo
1 Answer
David Valles
9,367 PointsHi Josh,
i think you don't need the extra parenthesis try:
todo.insert("Learn iOS", atIndex: 1)
Josh Smith
1,049 PointsJosh Smith
1,049 PointsOMG I was so close... that damn parenthesis!
Thanks David!