Non static method StartEngine() cannot be referenced from a static context?
GUIDE! When i try and compile this program i have the error information above ________________CODE__________________ training Motorcycle open public static void main (String args) Street bike m = new Motorcycle(); m.generate = “Yamaha RZ350”; m.coloration = “yellow”; Process.out.println(“Calling showAtts…”); m.showAtts(); Process.out.println(“——–“); Process.out.println(“Starting serps…”); StartEngine(); //**********error here*********** Process.out.println(“——–“); Process.out.println(“Calling showAtts…”); m.showAtts(); …