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.
2 Answers

Hugh Veal
3,250 PointsThe challenge asks you to: "Declare a variable named firstName and initialize it to the string returned from a call to Console.ReadLine()." So to start, you need to break this into simple steps. First, declaring a variable is a fundamental skill you will need for most programming languages. This can be done, like so:
var firstName = "Chris";
To read from the console, you can use:
string userinput = Console.ReadLine();
To combine the two tasks can be done like so:
var firstName = Console.ReadLine();

Adrian Bogdan Grijincu
2,819 PointsConsole.Write("Enter your firstName :"); string firstName = Console.ReadLine();

Steven Parker
221,309 Points FYI: Treehouse discourages leaving explicit solutions without explanations.
Steven Parker
221,309 PointsSteven Parker
221,309 PointsIt doesn't look like you've written any code yet.
At least please give it a good-faith attempt and then ask for help if you have trouble, and be sure to show your code.