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