diff --git a/unit_02/w05d02/homework/README.md b/unit_02/w05d02/homework/README.md
index 7e953a3..756186d 100644
--- a/unit_02/w05d02/homework/README.md
+++ b/unit_02/w05d02/homework/README.md
@@ -23,7 +23,20 @@ Prerequisites: Javascript
* Practice creating custom routes.
* Practice using parameters from a request.
-####Tonight you will be using your new found skills to create three separate Express apps.
+
+Tonight you will be using your new found skills to create three separate Express apps.
+
+
+#Greetings APP
+- Create an express application (see the bottom of this homework for a reminder).
+- Your app should have a route of `'/greeting'` and it should expect *1 param* which takes in a person's name.
+- When hitting the route, the page should display a message such as "Hello, ", or "What's up, , or "! It's so great to see you!" (ex. hitting `'/greeting/Jimmy-boy'` should display `Wow! Hello there, Jimmy-boy` on the page).
+
+**Commit 1**
+
+"Commit 1: Greeting express application created."
+
+
#Tip Calculator APP
@@ -31,9 +44,9 @@ Prerequisites: Javascript
- Your app should have a route of `'/tip'` and it should expect *2 params*. One should be `total` and one should be `tipPercentage`.
- When hitting the route, the page should *display how much your tip will be* based on the total ammount of the bill and the tip percentage. (ex. hitting `'/tip/100/20'` should display `20` on the page).
-**Commit 1**
+**Commit 2**
-"Commit 1: Tip Calculator express application created."
+"Commit 2: Tip Calculator express application created."
@@ -49,9 +62,9 @@ Prerequisites: Javascript
["It is certain", "It is decidedly so", "Without a doubt", "Yes definitely","You may rely on it", "As I see it yes", "Most likely", "Outlook good","Yes", "Signs point to yes", "Reply hazy try again", "Ask again later","Better not tell you now", "Cannot predict now", "Concentrate and ask again","Don't count on it", "My reply is no", "My sources say no","Outlook not so good", "Very doubtful"]
```
-**Commit 2**
+**Commit 3**
-"Commit 2: Magic 8 Ball express application created."
+"Commit 3: Magic 8 Ball express application created."
# Reminder on how to set up an express application