var age1 = 30;
if(age1 >= 13 && age1 <= 19){
message = "You are a teenager";
}else{
message = "You are not a teenager";
}
This code is pretty self explanatory, but when I run it in html It does not work, I don't know why. It does not give me any of the messages when run in HTML.