Array espelho

Retorne um array seguido de sua versão invertida, sem repetir no centro o último elemento da entrada.

Exemplos

Program.Mirror(new[] { 0, 2, 4, 6 }) ➞ new[] { 0, 2, 4, 6, 4, 2, 0 }

Program.Mirror(new[] { 1, 2, 3, 4, 5 }) ➞ new[] { 1, 2, 3, 4, 5, 4, 3, 2, 1 }