let numbers = [2, 3, 5, 7, 11];let min = Math.min( ...numbers )//min is 2let max = Math.max( ...numbers )//max is 11console.log("min = " + min);console.log("max = " + max);