I have a question on how I can change the index of a array element, so that it doesn\'t come at the 7. position but at position 2 instead...
Is there a function to h
Nothing is simpler:
array.insert(2, array.delete_at(7))