Having trouble figuring out Comparisons with the Logical Or Operator challenge

// Only change code below this line

if (val>=0 || val<10 )
{
return “Outside”;
}

// Only change code above this line
return “Inside”;
}

// Change this value to test
testLogicalOr(15);

i am not able to get the condition , please help me out

Or you can consider the AND operator