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.

Chhem Leangheng
Courses Plus Student 224 PointsChallenge Task 2 of 3
Call the printf method on the console object and make it write out "<YOUR NAME> can code in Java!"
// I have setup a java.io.Console object for you named console
Console console = System.console();
firstName = "Leangheng";
console.printf("My name is %s", firstName);
4 Answers

jcorum
71,814 PointsIt's unhappy because (1) you created a second Console object named console, and (2) you didn't write out what it asked for:
firstName = "Leangheng";
console.printf("%s can code in Java", firstName);

Scott Sanders
Courses Plus Student 1,826 Pointsreally poorly worded Challenge if i do say so myself i thought it wanted me to use the printf method to print my name and the can code in java was telling me i could use the %s to do my name instead of spelling it out

jcorum
71,814 PointsYes, the challenge editor can be really picky at times!

Scott Sanders
Courses Plus Student 1,826 PointsThank you for the help i spent 15 min trying and just didn't seem to understand what it was asking for should have noticed the ""