// JavaScript Document
function randomRange(lowVal,highVal){
return Math.floor(Math.random()*(highVal-lowVal+1))+lowVal;
}
