export function maxValue(values) { // implementar logica aqui let numeromaior = 0; if (values[0] < numeromaior) numeromaior = values[0]; let i = 0; for (i = 0; i < values.length; i++){ if (numeromaior < values[i]){ numeromaior = values[i]; } } return numeromaior; }