The Split function returns a zero-based array.

Rnd generates a decimal number uniform in the interval [0,1) (i.e., it includes 0 and excludes 1), so n*Rnd generates a number between [0,n)

Int() returns the whole number just <= its argument.

So to generate a random number uniform in the range of say [0,10], how would you combine those three functions?...?