diff --git a/Products.java b/Products.java
index 8272a5d6cf22749d4000aba5f6e7883138e7d8d0..eb50fd05c819206c44f3e7df16de9af1f63eb334 100644
--- a/Products.java
+++ b/Products.java
@@ -517,4 +517,13 @@ public class Products { /* a good class, but not as good as cse391 */
 		4.99
 	);
     }
+	public Product SprayKetchup() {
+        return new Product(
+            "SprayKetchup",
+            "Spray on Ketchup",
+            "ketchup.jpg",
+            "An image of what a spray on ketchup bottle would look like",
+            5.99
+        );
+    }
 }
diff --git a/images/products/ketchup.jpg b/images/products/ketchup.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f727096dcaaedb13e31d75f909018564a69bc9cf
Binary files /dev/null and b/images/products/ketchup.jpg differ
diff --git a/images/products/picture.jpg b/images/products/picture.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..55786d94bb6545820ab8b61b038eae37ee5a8d9c
Binary files /dev/null and b/images/products/picture.jpg differ