`listToJSArray [1,2,3] :: JSArray Int` should result in `[1,2,3]` but the actual result is `[3,2,1]`.
listToJSArray [1,2,3] :: JSArray Intshould result in[1,2,3]but the actual result is[3,2,1].