Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Numbers The Math Object Random Number Challenge – Two Numbers Solution

Nicolás Melgarejo
Nicolás Melgarejo
14,154 Points

My solution - Random between 2 numbers

// Collect input from a user
alert("Vamos a generar un número aleatorio entre dos valores dados");
const inputLow = prompt("Ingresa un número natural mayor que 1");
const inputHigh = prompt(`Ingresa un número natural mayor que ${inputLow}`);
// Convert the input to a number
const lowNumber = parseInt(inputLow);
const highNumber = parseInt(inputHigh);

if (highNumber && lowNumber && lowNumber < highNumber) {
  // Use Math.random() and the user's number to generate a random number
  const randNumber = Math.round(Math.random()*(highNumber - lowNumber)) + lowNumber
  // Create a message displaying the random number
  let message = `<h1>Has ingresado el número ${inputLow} y ${inputHigh}</h1> <h2>He creado un número aleatorio entre ${inputLow} y ${inputHigh}</h2><p>El número aleatorio es: ${randNumber}</p>`
  const mainSeletor = document.querySelector('main')
  mainSeletor.innerHTML = message
} else {
  alert("Debes elegir un número entero mayor que 1. Además el primero debe ser menor al segundo. Intenta de nuevo recargando la página");
}