Someone help, I have reviewed the code but it’s not running.
function testLogicalAnd(val) {
// Only change code below this line
if (val <= 50 && >= 25) {
return "Yes";
}
// Only change code above this line
return "No";
}
testLogicalAnd(10);