// random number between 2 and 11 // Math.trunc(Math.random() * (max - min + 1)) + min; let randNum = Math.trunc(Math.random() * (11 - 2 + 1) + 2);