What will be the output of the following code snippet? JavaScript Min, Max

@Devtools Tech
const isMinGreater = Math.min() > Math.max();
const isMaxGreater = Math.max() > Math.min();

console.log(isMinGreater, isMaxGreater);
Option 1
false true
Option 2
false false
Option 3
true false
Option 4
true true