var iArray = []; function getRandom(istart, iend) { var iChoice = iend - istart + 1; var res = Math.floor(Math.random() * iChoice + istart); return res; }
var iArray = []; function getRandom(istart, iend) { var iChoice = iend - istart + 1; var res = Math.floor(Math.random() * iChoice + istart); return res; }