hi, i’ve just finished the conditionals test2 and trying to figure out how to solve conditionals test3 
I checked your code. The problem is, you put your “else” statement in second conditional. It should be in first conditional.
You have two conditional in that test. First begins with:
if(machineActive) {…
and the second begins with:
if(score < 0 || score > 100) {…
your else statement should belongs to the first one.
This is the last 4 lines of your code:
} else {
response = ‘The machine is turned off. Turn it on to process your score.’;
}
}
it should be like this:
}
}else {
response = ‘The machine is turned off. Turn it on to process your score.’;
}