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 trialEd Peters
Courses Plus Student 567 PointsHi, not sure what I'm doing wrong here.
As much help as possilbe needed. I'm new and finding the instruction extremely difficult to follow.
// I have imported java.io.Console for you. It is a variable called console.
String firstName = console.readLine("What is your name? ");
String lastName = console.readline("What is your name? ");
4 Answers
Kyle Dudley
1,970 PointsChange your second line to console.readline to console.readLine. This should fix the problem.
William Matheny
Python Development Techdegree Graduate 32,198 PointsCapitalize your L in console.readLine
Jeff Wilton
16,646 PointsHi Ed, Don't be too discouraged, learning this is like learning a new language. In this case its a rather silly language where capitalization matters. The "readLine" method needs to have an uppercase L, which you missed in your second line of code. Take care of that, and keep going!
Ed Peters
Courses Plus Student 567 PointsHi. Thanks for the help. Was quite overwhelming to start the course but getting the hang of it now.