Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions Best-Food-Guessing-Game.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script>


var guess;
guess = prompt("What is the best food on the planet?");
answer = ["pizza","mac and cheese","chocolate chip cookies","cheese"];
Expand All @@ -16,7 +15,7 @@

else if (guess == answer[2]) {

alert("You're pretty close, these are delicious!");
alert("You're pretty close, these are super delicious!");
}

else if (guess == answer[3]) {
Expand All @@ -26,7 +25,7 @@

else {

alert("No, refresh to try again because you must not have great taste.");
alert("No, refresh to try again because you must not have the greatest taste.");
};

</script>
</script>