Evaluate the following code for operator precedence:
boolean result = 3 > 2 || 5 < 4 && 6 > 5;
OR has higher precedence than AND
AND has higher precedence than OR
result is false
result is true