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 trialSiddharth Doshi
3,547 PointsError in challenge 2/2 in What is an Array? Swift
Q : Print out the number of items in the todo array using println. A :
var todo = ["Learn Swift","Build App","Deploy App"]
println("\(todo.count)")
Bummer! Try again!
Siddharth Doshi
3,547 PointsI have use the backslash println("(todo.count)")
Tunde Adegoroye
20,597 PointsI have updated my comment sorry i read the post wrong remove the "" since you use that if you want to print a string in this case you want to use a function on a variable and it will return a value so you don't need to put the quotes around it
Siddharth Doshi
3,547 Pointsits ok but i have try it without quotes also but no use
Siddharth Doshi
3,547 PointsThanks problem solved.
3 Answers
Ricardo Hill-Henry
38,442 PointsThe Treehouse compiler doesn't want this message. The reason is, using interpolation here isn't really needed. When you're printing the value of a variable by itself using println, there's no need to interpolate since the value is a number, not being explicitly included within a string. The code you're using would work in XCode however, if you include a backslash.
println(todo.count)
Jason Almenas
922 PointsThanks for that, I was over complicating the answer and now that I see that it makes more sense.
petri foxx
336 Pointscorrect answer is println (todo.count)
Tunde Adegoroye
20,597 PointsTunde Adegoroye
20,597 PointsYou need to remove the quotes sorry since its turning the function call into a string my bad
This will fix it :)