export function sum(values) {
// implementar logica aqui
return values.reduce((firstValue, secondValue) => firstValue + secondValue, 0)
}