I have an array of int values ie. 5,20,32,79,98,etc...
How would I go about randomly selecting one of those values?
I know rand(min,max) can select a randmon number between 2 given values, but I need to only pick a number that is in the array.
Thanks!😃