//retourne un nombre aléatoire compris entre a et b (inclus)
function tirage(a,b) {
return a+Math.floor(Math.random()*(b-a+1))
}
