diff --git a/Products.java b/Products.java
index 2d8b474292986955c481839f28a82c9341e0ef84..c3ea57ab1d1d9cdf8938ed46a079bdfbaf590f91 100644
--- a/Products.java
+++ b/Products.java
@@ -326,6 +326,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		12.99
 	);
     }
-
+    public Product sluong05Product() {
+        return new Product(
+                "Fluffy cow",
+                "A fluffy cow to hug and feel warm and cozy",
+                "fluffyCow.jpg",
+                "Highland cow",
+                129.99
+        );
+    }
 
 }
diff --git a/Staff.java b/Staff.java
index 0f68ac23d8a6c2a513ba726ea225fc36607e7cde..df1072fd0138f67dee8d213c1fca8a6c2aee6d9c 100644
--- a/Staff.java
+++ b/Staff.java
@@ -347,6 +347,14 @@ public class Staff {
 		"tree"
 	);
     }
-
+    public Employee sluong05() {
+        return new Employee(
+                "Steven",
+                "Student",
+                "I work at Sizzle and Crunch! Come say hi!",
+                "Tennis.jpg",
+                "Tennis racket and balls"
+        );
+    }
 
 }