Hi,
I am having an ArrayList containing 10 elements. I want to jumble to elements in the list everytime I access it. Something like:
[1,2,3,4,5,6,7,8,9,0] should get jumbled up like
[4,5,3,2,6,1,9,8,0,7]
Can you please help me with this ?
Thanks in advance !