export function triangleArea(base, height) { // your code here const area = (base * height) / 2; return area; }