First off, - arraymaker seems great! Nice addition
I'd like some help,
I'm creating a list ( txt file ) with about 100 different number in it, for a web game.
I'd like to find a random one of those and see if it matches the typed value.
The way I am trying to do it so far -
Split Text To Array List
[takes my txt line spaced file of numbers and puts it in an array]
Array List Count
[Count the number of strings in the array]
[Store the value as array.Count]
Random Int
[Store a random Int value between 0 and array.Count]
Array List Get
[Sort of stuck at this point, as the terminology is not quite self explanatory ( to me ) , so some advice on how to now get that random value from the array and store it in a variable, would be great
Thanks