Function GetRandomMath(m,n) Randomize GetRandomMath = Int(((n-m+1) * Rnd) + m)End Functionmsgbox GetRandomMath(20,30)