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 trialChhem 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,830 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,830 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 ""