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 trialHai Duong
Courses Plus Student 111 PointsNow replace <YOUR NAME> in the console.printf ... I cannot pass this step although I followed the steps.
Help me please
// I have setup a java.io.Console object for you named console
String firstName = "Hai";
console.printf ("%s can code in Java!", firstName);
2 Answers
Jennifer Nordell
Treehouse TeacherYou have an extra space between your printf and your parentheses. I'm of the opinion that it shouldn't have passed step 2 of the challenge. If I take your code and remove the space, it passes. Take a look:
// I have setup a java.io.Console object for you named console
String firstName = "Hai";
console.printf("%s can code in Java!", firstName); //remove the extra space on this line
Hai Duong
Courses Plus Student 111 PointsI got it, I had to keep the all the task's line in order to pass the challenge, thanks Jennifer anw :)