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