This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Math.random()

Every time you click the button, getRndInteger(min, max) returns a random number between 0 and 9 (both included):

function getRndInteger(min, max) {
  return Math.floor(Math.random() * (max - min)) + min;
}