diff --git a/Products.java b/Products.java
index 759096a9dccc84f66e7a9e524dd8efe5a39f6a8b..beb01a9399ec1fa550a6e1be8ce9fde600bae708 100644
--- a/Products.java
+++ b/Products.java
@@ -4,7 +4,7 @@ public class Products { /* a good class, but not as good as cse391 */
     public Product kevinsProduct(){
 	return new Product(
 	    "Basketball",
-	    "Bouncy bouncy",
+	    "Bouncy bouncy orange ball",
 	    "basketball.jpg",
 	    "Picture of a basketball",
 	    42.0
diff --git a/Staff.java b/Staff.java
index 04de58097ab5ee3fe93dea6b18cc4641df95a1b3..6835e3e68b73517fc11516d45c8203b4dc1184eb 100644
--- a/Staff.java
+++ b/Staff.java
@@ -4,9 +4,9 @@ public class Staff {
 	return new Employee(
 	  "Kevin",
 	  "Bro",
-	  "Absolute chiller",
+	  "chill dude",
 	  "kevin.jpg",
-	  "Photographic masterpiece"
+	  "Photo"
 	);
     }