diff --git a/server/web_app/src/DataFixtures/ItemFixtures.php b/server/web_app/src/DataFixtures/ItemFixtures.php
index b0b60578b539810be938528f9035385faddfeea9..d2a021a99b1b254c38bf92c60ef12235ecdef168 100644
--- a/server/web_app/src/DataFixtures/ItemFixtures.php
+++ b/server/web_app/src/DataFixtures/ItemFixtures.php
@@ -89,6 +89,41 @@ class ItemFixtures extends Fixture implements DependentFixtureInterface
                 'price' => 999.99,
                 'purchase_url' => 'https://example.com/drone',
             ],
+            [
+                'wishList' => $wishLists[5],
+                'title' => '4K TV',
+                'description' => 'Ultra HD Smart TV with HDR support',
+                'price' => 1099.99,
+                'purchase_url' => 'https://example.com/4k-tv',
+            ],
+            [
+                'wishList' => $wishLists[6],
+                'title' => 'Home Theater System',
+                'description' => 'Surround sound system for an immersive experience',
+                'price' => 799.99,
+                'purchase_url' => 'https://example.com/home-theater',
+            ],
+            [
+                'wishList' => $wishLists[7],
+                'title' => 'Electric Scooter',
+                'description' => 'Eco-friendly electric scooter with long battery life',
+                'price' => 599.99,
+                'purchase_url' => 'https://example.com/electric-scooter',
+            ],
+            [
+                'wishList' => $wishLists[8],
+                'title' => 'Smart Refrigerator',
+                'description' => 'Wi-Fi enabled refrigerator with smart features',
+                'price' => 1499.99,
+                'purchase_url' => 'https://example.com/smart-fridge',
+            ],
+            [
+                'wishList' => $wishLists[9],
+                'title' => 'VR Headset',
+                'description' => 'High-resolution VR headset for gaming and experiences',
+                'price' => 399.99,
+                'purchase_url' => 'https://example.com/vr-headset',
+            ],
         ];                
 
         foreach ($itemsData as $itemData) {