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