export function maxValue(values) { // implementar logica aqui let maiorNumero = Math.max(...values); if (values.length === 0) { return maiorNumero=0 } else {}; return maiorNumero ; }