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