I want to randomize a range of numbers without "random.shuffle." Instead it would be using "randint(0, n-1)"
If I put in 4 into the function it could return [1,3,2,0] or [3,1,0,2]. I know that starting with an empty list and running through with a while list would work.