Es werden 100000 Durchläufe eines Zufallszahlenskript ausgeführt und die Verteilung
von 0-9 überprüft. Das sind 10 Möglichkeiten und damit etwa 10% Wahrscheinlichkeit.
Nach welcher Formel soll es ausgefürt werden?

Formeln:
1.: Math.round(Math.random()*9)
2.: Math.round(Math.random()*10-0.5)
3.: Math.round(Math.random()*10)
4.: Math.floor(Math.random()*10)