diff --git a/Products.java b/Products.java
index 4c6bcfe7ba235368f208c547ea0dd80f02242e25..952cd0f2de077118b96263d44d85b684d20ed640 100644
--- a/Products.java
+++ b/Products.java
@@ -536,4 +536,14 @@ public class Products { /* a good class, but not as good as cse391 */
             5.99
         );
     }
+
+    public Product cscs24Product() {
+            return new Product(
+                "Coffee",
+                "Good coffee",
+                "coffee.jpeg",
+                "Picture of coffee",
+                4.99
+        );
+    }
 }
diff --git a/Staff.java b/Staff.java
index 1afe97cec36da7a43c15440479a680020197fd15..9bf3baa39656060ca18ce33266f94c348a0c8133 100644
--- a/Staff.java
+++ b/Staff.java
@@ -558,4 +558,14 @@ public class Staff {
                 "Picture of women playing volleyball"
         );
     }
+
+    public Employee cscs24() {
+            return new Employee(
+                "Chaitanya",
+                "Student",
+                "On the grind",
+                "ocean.jpg",
+                "Picture of the ocean"
+        );
+    }
 }