The second example should be "min" instead of "max". You can find the largest and the smallest value in a set of numbers. ``` Math.max(7, 2, 10, 5); //=> 10 Math.max(7, 2, 10, 5); //=> 2 ```