What message will be displayed after the execution of the following code segment?

var BMI = 18;

if(BMI>18.5)

alert( "Overweight");

else

alert("Underweight");

Overweight

Underweight

Both Overweight and Underweight

randomly display either Overweight or Underweight.