Of course it is. For example you can add them in the order as you like, then the order will be kept. On the other hand if you have them in some order and you want to reorder them as you like then you can change them just like you do with changing values of two variables f.e.
var fruits = new string[3] { "Apple", "Banana", "Ananas" };
var tempFruit= fruits[0]; // hold fruit in a temp variable
fruits[0] = fruits[1]; // exchange fruit positions
fruits[1] = tempFruit; // retrieve fruit from position 0 from temp variable