Evaluate the following Java code involving relational and logical operators:
int x = 7; boolean check = x >= 5 && x <= 10;
check is false
There's a logical error in combining the operators
check is true
The expression checks if x is outside the range 5-10