### arrayMin 返回数组中的最小值。 将`Math.min()`与扩展运算符 (`...`) 结合使用以获取数组中的最小值。 ~~~js const arrayMin = arr => Math.min(...arr); // arrayMin([10, 1, 5]) -> 1 ~~~