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

tommytivo
tommytivo
512 Points

What is wrong with todo.insert("Learn iOS", atIndex: 1) Note: This text box doesn't work well. Limits text.

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

The result is: ["Learn Swift", "Learn iOS", "Build App", "Deploy App", "Debug App"

Is that not correct?

Thanks, Tom

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

2 Answers

I'm not quite clear what your question is, but the correct answer should look 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)
tommytivo
tommytivo
512 Points

Thanks for your help. I did figure it out evenually.