Expense Tracker

Date Category Amount Currency Delete
Total: $0.00
``` The issue was that the `addExpense` function was not being called properly. The form submission event listener was added correctly, but the function itself had a typo in the line where it pushes the new expense into the array. It should be `expenses.push(newExpense)` instead of `expensess.push(newExpense)`. This has been fixed in the updated code above.