Sort the Number array

Report a typo

Look at the below code snippet and determine what will be in the third index of the array.

let myNumbers = [69, 1, 10, 11, 100, 55, 83];
myNumbers.sort();
myNumbers.sort((a, b) => a - b);
myNumbers.reverse();

Enter a number
___

Create a free account to access the full topic