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

I am new to programming . I am having hard time in figuring out where did I go wrong

I am new to programming . I am having hard time in figuring out where did I go wrong

Name.java
// I have setup a java.io.Console object for you named console
public static void main(String[] args){
 String firstName = "adithya";
sort = firstName.sort();
System.out.println(sort);
}

1 Answer

Kourosh Raeen
Kourosh Raeen
23,733 Points

First remove: public static void main(String[] args)

In the first step of the challenge you just need:

String firstName = "adithya";

Also, there is no sort method for the String class and I'm not sure why you are trying to sort since the challenge is not asking for that, so remove:

sort = firstName.sort();
System.out.println(sort);

Then, use console.printf instead of System.out.println:

console.printf("<YOUR NAME> can code in Java!");

Finally, use a string formatter for the last part:

String firstName = "adithya";
console.printf("%s can code in Java!", firstName);