export function triangleArea(base, height) {
// your code here
const areaTriangle = (base * height) / 2
return areaTriangle
}
triangleArea(10, 15)