@Q
Sorry, don't have the trial demo...
But here's a couple more hints for your project:
The RND(max) function returns a random whole number between 0 and max. If you want a specific range of numbers, say between 25 and 99, you have to do a little math. If the lowest number in your range is positive, you will add that onto the RND(max) function:
RND(max)+25
If the lowest number is negative, you will subtract that from the RND(max) function:
RND(max)-25
Now you also have to change the max. We'll say our max value should be 99, but if our lowest value is 25, we have to subtract 25 from max. Our new max would be 99-25=72. So to generate random numbers between 25 and 99 the function would look like:
RND(72)+25
If the lowest number is -25 max = 99 - -25 = 124 . The random function for a range of numbers between -25 and 99 then looks like:
RND(124)-25
To make your random numbers more "random" you should seed the random number generator with the RANDOMIZE function. At the top of your program include something like RANDOMIZE TIMER() - which will seed the random number generator with whatever the current value the timer has. This is a pretty good seed unless someone launches the program at exactly the same time to the ms everyday.
Since BINGO is 5 letters long, you could generate random numbers from 1 to 5. If the computer generates a 1, then that means the computer has picked B. If 2, I etc.
This works out nicely for your array.
Enjoy your day.