I recently started programming with SmallBasic and I was wondering if it was possible to check if a random number is already in an array. My code so far:
Count = 10
For i = 1 to Count
var[i] = Math.GetRandomNumer(100)
TextWindow.Write(var[i] + ‘,’)
Endfor
Thanks in advance:)