Array Shuffle

Hi all,

I’d like to be able get a nice shuffle but utilize a seed so that I can consistently recreate a specific shuffle of array items.

I was wondering, is there a way to Seed the Array.shuffle function?

Thanks for any help and regards,

Eric

I don’t think so. You’d have to shuffle it manually by creating a different, Integer array of the same size, filling it with the order values, then sorting it with your original array using SortWith.