rand()
function rand() { var min = 300; var max = 500; return Math.floor(Math.random() * (max - min + 1)) + min; }