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.

Anastasios Poursaitedes
10,489 PointsString guessInput variable
I am curious to know what data type does the scanner returns. Is it a String? That's why we declare the guessInput as a String? Because I think we could have declared it as a char and we could delete the decleration of guess. Food for thought.
2 Answers

Lauren Moineau
9,483 PointsHi Anastasios. A Scanner in Java parses Strings and primitive types, except for char. So nextLine() has to be used here to return a String, and then we call charAt(0) on that String to get the first and only letter of the String. It is what it is :D

Anastasios Poursaitedes
10,489 PointsThanks Lauren :)

Lauren Moineau
9,483 PointsYou're welcome :)