This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
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; }