Wazzaaaaaa! I'm trying to create two different functions that choose numbers at random.
I want something like this: (ranged-random 1 10)
RANGED-RANDOM would simply pick a number given the range (inclusively)
I also want something like this: (list-random '(6 8 15 90 3 5))
LIST-RANDOM would pick one of the numbers in the list at random.
Are there any functions like these already, or will I have to make them myself?