// JavaScript Document





//to add more facts, continue down the list with "fact[6]=". change the number after (Math.random()* to whatever the last number is you have in your list. Then change the Number after new Array( to be one more than the new number after (Math.random()*. Always start a fact with " and end the fact with ";

																																																														  

																																																														

var rand=Math.round(Math.random()*1);
var facts=new Array(2);
facts[0]="You burn 40 calories by simply making your bed.";
facts[1]="A person will burn 7 percent more calories if they walk on hard dirt compared to pavement.";
//facts[2]="INSERT FACT HERE.";
//facts[3]="INSERT FACT HERE.";
//facts[4]="INSERT FACT HERE.";
//facts[5]="INSERT FACT HERE.";
//facts[6]="INSERT FACT HERE.";
//facts[7]="INSERT FACT HERE.";
//facts[8]="INSERT FACT HERE.";
//facts[9]="INSERT FACT HERE.";
//facts[10]="INSERT FACT HERE.";


document.write(facts[rand]);
