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

Java Java Basics Getting Started with Java IO

Hi, 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.

IO.java
// 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
Kyle Dudley
1,970 Points

Change your second line to console.readline to console.readLine. This should fix the problem.

Capitalize your L in console.readLine

Jeff Wilton
Jeff Wilton
16,646 Points

Hi 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!

Hi. Thanks for the help. Was quite overwhelming to start the course but getting the hang of it now.