diff --git a/index.html b/index.html
index 3ec9763..ed85406 100644
--- a/index.html
+++ b/index.html
@@ -9,7 +9,7 @@
window.onload = function() {
var number, tip, total;
- alert("Let's calculate your 20% tip.");
+ alert("Let's calculate your 25% tip.");
baseAmount = parseFloat(prompt("How much is the bill?"));
@@ -17,7 +17,7 @@
total = calculateTotal(baseAmount, tip);
- alert("Your 20% tip is: " + tip);
+ alert("Your 25% tip is: " + tip);
alert("Your total is: " + total);
};