Hi. Im trying to reorder a list in Haskell. What im trying to do is get a list of integers in ascending order and reorganise them so that the sequence is lower, upper, lower+1,upper-1,etc..

so for example [1...6] would become [1,6,2,5,3,4].

As a non-Haskell Programmer, i have no idea how to do this. Could someone help me please!

Thanks!!!