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 trialAustin Schumacher
155 PointsDefine a string variable named firstName that stores your name. Set the value to name. String FirstName = "Austin";
i need some help on this
// I have setup a java.io.Console object for you named console
String FirstName = "Austin";
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! You're doing great. But the answer to your question is actually written in your question. Remember, just about everything in programming is case-sensitive. You've named your variable FirstName
instead of firstName
. These are two entirely different variable names according to Java. If I change the "F" to an "f", your code passes!
Hope this helps!