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.

milly mines
339 PointsI need help with this task
can't understand
class GoKart {
}
String color = "red"
3 Answers

Kayondo Martin
7,481 Pointsyou are not enclosing the color field inside the class. Plus, you are forgetting the semi-colon at the end of the field declaration.
just do
String color = "red";

Trent Christofferson
18,846 PointsMake sure to put all your code within the class:
class GoKart {
//Code in here
}

Florentin Dumitrache
3,757 PointsYou created the class GoKart . The class is like a blueprint and you have to store the information in it. Put String color = "red" in the class , because in your example you are outside of the class. And also you missed ; after declaring your variable. This is how it should look :
class GoKart { String color = "red"; }
milly mines
339 Pointsmilly mines
339 Pointsthanks :)