Summary: Learn how to reverse an array with Windows PowerShell.
How can I use Windows PowerShell to reverse the order of an array stored in a variable?
Use the static reverse method from the Array class, for example:
$a = @(1,2,3)
[array]::reverse($a)