[Javascript] Generacion de numero aleatorio
const numeroAleatorio = (min, max) => { return Math.random() * (max - min) + min; }