Meetings: Pointless Minimalist Meetings - Cheesy Conundrum

Today, we're discussing the existential crisis that is deciding which pizza topping is the most superior. It's not just a question of taste, but also of philosophical implications.

Take it to the next level with Extra Cheesy Conundrum Back to the main conundrum
			
			<?php
				// Define the possible toppings
				$toppings = array('Mozzarella', 'Pepperoni', 'Sausage', 'Bacon', 'Olives', 'Onions', 'Bell Peppers');
				// Define the scoring system
				$scoring_system = array(
					'1' => 'Mozzarella',
					'2' => 'Pepperoni',
					'3' => 'Sausage',
					'4' => 'Bacon',
					'5' => 'Olives',
					'6' => 'Onions',
					'7' => 'Bell Peppers'
				);
				// Generate the final ranking based on a random number generator
				$r = rand(1, 7);
				$winner = $scoring_system[$r];
				echo "And the winner is... $winner!";
				?>