function getRandom(n){
if(n>1)return Math.floor(Math.random()*n)
return 0
}

