When I'm working with arrays and manipulating them I like to use obj.link(), basically removes the need to use a return.
PHP Code:
function onCreated() {
// Example Array
temp.arr = "9 8 7 6 5 4 3 2 1".tokenize();
// Sort
bubbleSort(temp.arr.link());
// Array Sorted
echo(temp.arr);
}