diff --git a/Products.java b/Products.java
index c58fa69f53bc20881175d2be826ebfd29a102e5f..1dd6ffb49a84b912d2f8e307f67688f7e70da2af 100644
--- a/Products.java
+++ b/Products.java
@@ -909,8 +909,7 @@ public class Products { /* a good class, but not as good as cse391 */
             199.99
         );
     }
-
-    public Product rlyons8product() {
+    public Product rlyons8Product() {
 	    return new Product(
 			    "Meowchi Plushie",
 			    "A cute neko plushie",
@@ -920,5 +919,14 @@ public class Products { /* a good class, but not as good as cse391 */
 			    );
     }
 
+    public Product sirjan1Product() {
+    	return new Product(
+			"A ball for soccer",
+		      	"used for playing... soccer",
+		       	"soccerball.jpg",
+		       	"a..soccer..ball",
+		       	10000.0
+		);
 
+    }
 }