<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.>
<In what way does your code behave incorrectly? Include ALL error messages.>
It says this is wrong when itβs clearly not:
int fuelLevel = 3;
char canDrive(fuelLevel > 1) ? 'Y' : 'N';
System.out.println(canDrive);
}
}
<do not remove the three backticks above>