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.

Ram Guduputi
544 PointsI have no idea what I am doing wrong with my code. I am in Challenge Task 3 of 3 in Java Basics.
Please tell me what I am doing wrong
QUESTION: Now replace <YOUR NAME> in the console.printf expression with the firstName variable using the string formatter. It says I must "keep my printf statement intact"
// I have setup a java.io.Console object for you named console
String firstName = "Joe";
console.printf ("%s can code in Java!", firstName);
1 Answer

Jason Anello
Courses Plus Student 94,592 PointsHi Ram,
Task 3 is having an issue with the space that you have after printf
and before (
You should pass after removing that space. The staff have been notified of the problem.
Ram Guduputi
544 PointsRam Guduputi
544 PointsThank you for the answer!