Dear Monks, I want to select 5 integers randomly from integers in the range 1 to 15. Assume these integers are uniformly distributed. A number once picked should not be picked again (i.e. selection without replacement). I tried this using function "random_uniform_integer()", however this function picks one number more than once which I do not want. Please let me know what is the appropriate way of doing this. Thanks a lot.