Hi
I have two lists as below :
List1 = {a1, b1, c1, d1}
List2 = {a2, b2, c2, d2}
with using RandomSample[ ] how I can generate new lists with the same order for both lists. For example :
RandomSample[List1]
{b1, d1, a1, c1}
RandomSample[List2]
{b2, d2, a2, c2}
Many thanks for your help.