I have an array @number = [1,2,3,4,5,6,7,8,9]
Now, I want to randomize the array content… something like eg: [5,3,2,6,7,1,8]
Please guide me how to proceed with it.
I have an array @number = [1,2,3,4,5,6,7,8,9] Now, I want to randomize the array
Share
Use the
shufflemethod …