The function product_of_list(numbers) should return the product of all numbers in a list. It delegates the actual multiplication to a helper multiply_all(*args), which takes individual numbers as separate arguments.
The function always crashes with a TypeError. The helper multiply_all is correct — the bug is in how product_of_list calls it.
Can you spot the two missing characters?