makes a random selection of the elements in a set
set2 = random_subset(n,set1)
positive integer
set
The function random_subset returns a set of n elements taken randomly from the elements of the set set1.
random_subset
n
set1
set1=define_set("a","b","c","d","e","f","g") random_subset(3,set1) random_subset(3,set1) random_subset(5,deck_54())