Answer:
Add after line 3:
numItems = numItems - 1;
Step-by-step explanation:
The complete code of Tiffany should be provided in question is:
line 0 -- var numItems = promptNum("How many items?");
line 1-- var total = 0;
line 2-- while (numItems > 0){
line 3-- total = total + promptNum("Enter next item price");
line4-- }
line 5-- console.log("The total is" + total);