Please help, I can’t figure out what am I doing wrong. Also, when I press “Run Tests” - it doesn’t do anything, and doesn’t show me which ones I have to correct.
function testLogicalAnd(val) {
// Only change code below this line
if (val <=50 && val >=25) {
return "Yes";
}
}
// Only change code above this line
return "No";
}
// Change this value to test
testLogicalAnd(10);
That’s the thing usually “something” happens, it shows me which result I completed and which not, but in this case it just doesn’t do anything. I tried refreshing the page, resetting the code and writing it again.