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.

ahmad baddah
Courses Plus Student 153 Pointswhat is the wrong in this!!!
help please
// I have setup a java.io.Console object for you named console
public static void main(String[] args){
String firstName;
firstName = "ahmad";
System.out.println(firstName);
}
}
2 Answers

Presley Cobb
971 PointsIf this is a code challenge you don't need to wrap everything the main method. You just need to variable declaration and the assignment.

Derek Markman
16,291 PointsYou're missing the class declaration, you have the closing bracket for the class declaration but not the class itself. Since your class is called Name.java your code should look like this:
Name.java
// I have setup a java.io.Console object for you named console
public class Name { //this is the part you were missing
public static void main(String[] args) {
String firstName;
firstName = "ahmad";
System.out.println(firstName);
}
}
I'm not sure what the challenge is asking you to do, but from what you posted, that is what is missing, everything else is good.
ahmad baddah
Courses Plus Student 153 Pointsahmad baddah
Courses Plus Student 153 Pointshelp!!