How Change elements index in array?

First convert array to list type.
Use assign activity: list_variable = array_variable.ToList()

After that change the index of the element in the list.
Refer this link to change list item index.

Then convert the list to array type.
Use assign activity: array variable = list_variable.ToArray()