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!
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
Lyric Abbott
35,595 PointsWhat 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

Dino Paškvan
Courses Plus Student 44,107 PointsYou are supposed to use an array literal:
var favoriteSports = ["football", "basketball", "tennis"]

Steve Pham
1,488 Pointslet bestSmartphone = "iPhone" var favoriteSports = ["football", "basketball", "tennis"]

Michiko Perry
3,617 Pointsconsecutive statements on a line must be separated by a semi-colon.
<p>let bestSmartphone: String = "iPhone"; var favoriteSports: [String] = ["football", "basketball", "tennis"] </p>