Sure, just go through the array in the other direction.

Replace:
Code:
for each $item in $folders
? $item[0] " " $item[1]
next



With:
Code:
For $i = UBound($folders) To 0 Step -1
$item=$folders[$i]
$item[0]+" "+$item[1]+@CRLF
Next