Say i have a Array like so,
The, Quick, Brown, Fox, Jumps
and i need to move/shift one of the elements to the front so it looks like this
Brown, Fox, Jumps, The, Quick
How can one sort an array like a revolving door? by moving one element and having the rest follow behind?
Is there an easy method or should i just copy/loop/slice/copy?