const stats = {
max: 56.78,
standard_deviation: 4.34,
median: 34.54,
mode: 23.87,
min: -0.75,
average: 35.85
};
const stats1 = {
max: 500,
standard: 5,
min: 6,
}
// Only change code below this line
const half = ({max,min}) => console.log(max,min);
// Only change code above this line
I’m having trouble understanding how HALF would chooses between the two max and mins from both variables above.