public static void Main()
Console.WriteLine("Hello World");
class GuineaPigPopcornGame
Console.WriteLine("Welcome to the Guinea Pig Popcorn Game!");
Console.WriteLine("Press the spacebar to make the guinea pig popcorn. Type 'exit' to quit the game.\n");
Random random = new Random();
Console.Write("Your move: ");
string input = Console.ReadLine();
if (input?.ToLower() == "exit")
Console.WriteLine("\nThanks for playing! Goodbye!");
int popcornMove = random.Next(1, 4);
Console.WriteLine("The guinea pig jumps up excitedly! 🌟");
Console.WriteLine("The guinea pig spins around in joy! 🌀");
Console.WriteLine("The guinea pig leaps sideways! 🐾");
Console.WriteLine("Press the spacebar to make the guinea pig popcorn, or type 'exit' to quit.");