PrecedenceJava/Help

I extremely new to coding and I am have trouble with the following:

Line 4 has a code statement that is incomplete. Use each Boolean operator no more than once to replace the empty comments //. The code statement should print out false.

1 public class Precedence {
2 public static void main(String args) {
3
4 boolean riddle = ( !( 1 < 8) && (5 > 2 || 3 > 5));
System.out.println(riddle);

}

}

Please help to resolve…Thanks In Advance!