var mutableArray = [19,7,8,45,34] // function sort sorts the array but does not change it. Also it has return mutableArray.sort() mutableArray // prints 19,34 // function sortInPlace will mutate the array. Do not have return mutableArray.sortInPlace() mutableArray // prints 7,19,34,45