export function triangleArea(base, height) {
// your code here
let soma = base * height / 2
return soma
}