Reordering array elements

What’s the best way to move an element in an array of many elements to another position (index)?

Remove and Insert. Note however that Remove causes subsequent indexes to change, so you must adjust the insertion point if it is a higher index than the removal point.

Thanks Tim! Got it working.