1function rand(a, b) {
2  return (parseInt(Math.random().toString().substr(2)) % (b - a + 1)) + a;
3}