élément aléatoire

function getRandomArbitrary(min, max) {
  return Math.random() * (max - min) + min;
}
Condemned Chinchilla