The instructions:
Use the precedence rules to help you evaluate the Boolean expression in the single line comment above the tricky variable.
Then, set the boolean variable tricky equal to the result (either true or false).
// ( 3 >= 3 && !(true || true) )
boolean tricky = false || true;
^^^^ the bottom part is right! but the top line is wrong and I don’t know what to do