I am trying to find code that will result in all the variations in any order of a group of numbers, for example, 1,2,3,4,5. The result of running the code would give me 1,2,3,4,5, 1,3,2,4,5, 1,4,2,3,5, etc. until running through all combinations without repeating. Would anyone be willing to help me?