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

Josh Smith
Josh Smith
1,049 Points

I 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!

arrays.swift
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
David Valles
9,367 Points

Hi Josh,

i think you don't need the extra parenthesis try:

todo.insert("Learn iOS", atIndex: 1)

Josh Smith
Josh Smith
1,049 Points

OMG I was so close... that damn parenthesis!

Thanks David!