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 trial

Java Java Basics Getting Started with Java Strings, Variables, and Formatting

all the print function on the console object and make it print out "<YOUR NAME> can code in Java!"

Hello, im trying to print out my name in this way: console.printf("%s", firstName);

but it dosent work, what is wrong??

1 Answer

Right now, this

console.printf("%s", firstName);

will give you just your first name as output. The challenge though wants you to print this...

"<YOUR NAME> can code in Java!"

which is in other ways represented as

"%s can code in Java!"

I hope this helps

thanks very mutch i totaly forgot the rest hehehe