
// Get random number

var question_num = Math.floor(Math.random()*10)+1

var question=""

if (question_num == 1){

question = "Low birth weight means being born at less than 4 lbs."

}

else if (question_num == 2){

question= "Low birth weight is mainly due to babies that are born before term (preterm)"

}

else if (question_num == 3){

question= "The rates of low birth weight and PTB are virtually the same each year"

}

else if (question_num == 4){

question= "Labour is easier when you have a small baby"

}

else if (question_num == 5){

question= "The problems associated with being born low birth weight are short-term."

}

else if (question_num == 6){

question= "Low birth weight rates have been dropping in the last 10 years"

}

else if (question_num == 7){

question= "The incidence of disability among low birth weight babies is low"

}

else if (question_num == 8){

question= "Low birth weight is costly to the health care system"

}

else if (question_num == 9){

question= "Low birth weight affects employers as well as employees"

}

else if (question_num == 10){

question= "Poor growth in the fetus and preterm birth can be prevented"

}
