<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/learn-java/lessons/object-oriented-programming/exercises/generalizations-oop-java?action=resume
<In what way does your code behave incorrectly? Include ALL error messages.>
I have no idea what to do for the instructions. I have tried all sorts of codes putting it everywhere but I keep on getting errors. SOMEONE HELP ME PLEASE!!!
I’ve been putting myOrder.Coffee(); mainly and placed after the main in between the brackets
```class Coffee {
public Coffee() {
}
public void addSugar(int cubes) {
System.out.println("You added " + cubes + " sugar cubes.");
}
public static void main(String[] args) {
}
}