Functions Documentation
View Function Edit Function
Name shuffle
Syntax (shuffle list)
Argument List list: The list you want to put in random order.
Returns list: A list containing the same elements as the passed in list but in a random order.
Category 0.99, list, random
Description Makes a new list based on the passed in lists elements ordered randomly.
Example
(shuffle '(a b c d e))

Can return the list (c d e b a)
Comment Useful in shuffling the first level of a list.