I have the code:

foreach(THREAD; PAGE["threadList"])
{
     ~Some code
}

My question: How can I reverse the order of PAGE["threadList"] during iteration so it is returned as 98765 instead of 56789? The method used for general arrays (.reverse or foreach_reverse) does not work.