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

Jimmy Jumaye
Jimmy Jumaye
3,417 Points

Really struggling with the question don't understand what to do exactly

I don't understand what to do in this challenge. Do I have to write the whole line of code or just specific one's ,or neither. can someone walk me through this challenge Cause I think i'm over thinking it. Is my line of code wrong or not what the question ask?

Thanks

Name.java
// I have setup a java.io.Console object for you named console
String firstName="jimmy";
console.printf ("my name is %s, firstName ");
Eric Tang
Eric Tang
Courses Plus Student 1,300 Points

Hi Jimmy, everything you've done is correct. The only error here is the " you put behind the firstName variable. Move it so that it is right after the %s and before the comma. So it should look like this

String firstName="jimmy";
console.printf ("my name is %s" , firstName );