Im stuck at 5/11

<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.>

```

public class Precedence {
public static void main(String args) {

	boolean riddle = (! 1 < 8 && (5 > 2||3 < 5));
	System.out.println(riddle);
<do not remove the three backticks above>
1 Like

You did everything right except. The Not operator “!” should be in front of the parentheses.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.