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 trial

C# C# Basics (Retired) Console I/O Formatting Output

Task 3 of 3

string firstName = Console.ReadLine();

Console.WriteLine(firstName + " rocks!”);

Really not sure why this isn't working.

CodeChallenge.cs
string firstName = Console.ReadLine();

Console.WriteLine(firstName + " rocks!”);

1 Answer

Justin Horner
STAFF
Justin Horner
Treehouse Guest Teacher

Hello Brandon,

I used your code and passed the challenge. Maybe the sever was down temporarily. Please try again and let me know if the problem still exists.

It seems as though your last quote doesn't match the first in the code you posted. This should work.

string firstName = Console.ReadLine();

Console.WriteLine(firstName + " rocks!");

I hope this helps.