Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nigel Matheson
Courses Plus Student 1,166 PointsThis is still not quite right and I don't know why?
I believe I have done everything right but it is still wrong?
// Enter your code below
let title = "A Dance With Dragons"
var rating Double = 7.5
"\ (title), \ (rating)\ (double)"
3 Answers

Jeff McDivitt
23,970 PointsThe task does not ask for the line you have at the end, also you do not need to declare rating a double
let title = "A Dance with Dragons"
var rating = 7.5
var isAvailable = false

Nigel Matheson
Courses Plus Student 1,166 PointsHi Jeff thank you for that. Where it says Var isAvailiable = false I don't get that I think I have missed something somewhere along the line.

Jeff McDivitt
23,970 PointsThat is task three of the challenge I just included it it there