I have an array. I would like to write its items in a random order every time I call. My array is this.
string[] a= {"A","B","C","D","F"};
string[] a= new string[5];
For example the order should be like this
C D F A B
But it should change the order.