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 Objects (Retired) Meet Objects Creating New Objects

Meet objects challenge 2 of 2

Can somebody help me understand where i am getting it wrong

Example.java
public class Example {

    public static void main(String[] args) {
        System.out.println("We are going to create a GoKart");
      GoKart gokart = new GoKart ("red");
      System.out.printf ("New GoKart is %s", GoKartObject.getColor () );
    }
}

2 Answers

Axel McCode
Axel McCode
13,869 Points

Hi Brett!

I believe the problem with your code is that you are using the wrong object reference. So instead of GoKartObject.getColor() use gokart.getColor()

Also you had a space between getColor and the method parenthesis.

public class Example {

    public static void main(String[] args) {
         System.out.println("We are going to create a GoKart");
         GoKart gokart = new GoKart ("red");
         System.out.printf("New GoKart is %s", gokart.getColor() );
    }
}

Hope this helps!

-Axel

Hey Axel

Thank you so much for your help, i have completed the challenge,

thanks a lot

Axel McCode
Axel McCode
13,869 Points

No problem, Glad I could help out!