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

What did i do wrong?

On the line after bestSmartphone, create an array named favoriteSports of type String and store the strings "football", "basketball" and "tennis" in it.

my code:

var favoriteSportsArray = ["football"] favoriteSportsArray.append("basketball") favoriteSportsArray.append["tennis"]

3 Answers

You are supposed to use an array literal:

var favoriteSports = ["football", "basketball", "tennis"]
Steve Pham
Steve Pham
1,488 Points

let bestSmartphone = "iPhone" var favoriteSports = ["football", "basketball", "tennis"]

Michiko Perry
Michiko Perry
3,617 Points

consecutive statements on a line must be separated by a semi-colon.

<p>let bestSmartphone: String = "iPhone"; var favoriteSports: [String] = ["football", "basketball", "tennis"] </p>