I assume that you want to remove the last two elements
and move them to the beginning. That is (for an int example) :

0 1 2 3 4 5 6

change to

5 6 0 1 2 3 4

if so, you might be able to use std::rotate in <algorithm>, but it
depends on what your "array of strings" looks like.