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 trialmilly 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 :)