descending array range



Hi,
let
@a = 111011010;
$a[0]=1;
$a[1]=1;
......
I need
@b=@a[8..5].@a[4..0];
how to do that knowing that, as I think, the range operator accepts only ascending arguments ?
Your Help is highly appreciated..
Thanks And Regards,
Eliyah


.