Creating a Randomized Sequential List I wanted to create a list of N numbers from 1 to N in a random order. Testing a method that uses Insert to make sure it works online. This could be handy if you want to shuffle a list into a random order. Rather than work with the original list, just build an ordering list using this technique, then use the numbers of the ordering list as indices into the original list.