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.

Babatunde Obidare
Courses Plus Student 10,471 PointsWhat is wrong with this code? System.Console.Write("Enter a book title: ”);
What is wrong with this code?
System.Console.Write("Enter a book title: ”);
It was marked wrong during my study.
string bookTitle = "Gone with the wind";
System.Console.Write("Enter a book title: ”);
2 Answers

bothxp
16,509 PointsHi,
I'm not sure what has caused it, but there is a problem with the last quotation mark in the line:
System.Console.Write("Enter a book title: ”);
Delete it and re-add the closing quotation mark.
It should look like:
System.Console.Write("Enter a book title: ");

Naveed Sarwar
Courses Plus Student 1,081 PointsYou should type it like this:
System.Console.Write("Enter a book title: ");
Babatunde Obidare
Courses Plus Student 10,471 PointsBabatunde Obidare
Courses Plus Student 10,471 PointsIt worked. Thanks all!!!