diff --git a/Products.java b/Products.java index e13132ef2a31fcb0166e4b932943ec1e98afbf14..c3ccac374d33c2fb4e50e28136a50ff986539349 100644 --- a/Products.java +++ b/Products.java @@ -606,5 +606,15 @@ public class Products { /* a good class, but not as good as cse391 */ "Picture of Intel Processor", 589.00 ); + } + + public Product sjeyteProduct() { + return new Product( + "AMD Ryzen 7 7800X3D", + "Best gaming chip currently!", + "7800x3d.jpeg", + "Picture of the AMD processor.", + 449.00 + ); } }