I have a list of two digit integers and I'd like to randomize the order they are in. Right now they are appear like;
Int[0] = 10
Int[1] = 12
Int[2] = 4
Int[3] = 7
And I'd like them to randomize into something like;
NewInt[0] = 4
NewInt[1] = 12
NewInt[2] = 10
NewInt[3] = 7
What's the best way to do this?
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
I have a list of two digit integers and I'd like to randomize the order they are in. Right now they are appear like; Int[0] = 10 Int[1] = 12 Int[2] = 4 Int[3] = 7
And I'd like them to randomize into something like; NewInt[0] = 4 NewInt[1] = 12 NewInt[2] = 10 NewInt[3] = 7
What's the best way to do this?