Hi @pypro89823, I think I know where the problem is.
function getTax() {
return getSubTotal(itemCount) * 0.06;
}
change itemCount (parameter) into orderCount (argument), you would want to pass in argument into getSubTotal() rather than a parameter inside the getTax() function.
function getTax() {
return getSubTotal(orderCount) * 0.06;
}