Tell us what’s happening:
**Your code so far**
```js
function alphabeticalOrder(arr) {
// Add your code below this line
return arr.sort(function(a,b)
{
console.log(arr);
console.log(a);
console.log(b);
console.log(arr);
if(a>=b)
return 1;
else
return -1;
})
}
console.log(alphabeticalOrder(["x", "h", "a", "m", "n", "m"]));
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/functional-programming/sort-an-array-alphabetically-using-the-sort-method