What is the result of the following expression?
[3, 15, 1, 6].sort((a, b) => b - a);
[3, 15, 1, 6]
[15, 6, 3, 1]
[1, 3, 6, 15]
[3, 6, 15, 1]