static string[] text = {"You have much to", "Today is a day to", "Whatever work you do", "This is an ideal time to"};
static string[] good = {"look forward to.", "try new things!", "is likely to succeed.", "accomplish your dreams!"};
static string[] bad = {"fear.", "avoid major decisions.", "may have unexpected outcomes.", "re-evaluate your life."};
static string[] neutral = {"appreciate.", "enjoy time with friends.", "should align with your values.", "get in tune with nature."};
public static void PrintState(int luck)
for (int i = 0; i < 4; i++)
Console.Write($"{text[i]} {state[i]} ");
public static void Main()
Random random = new Random();
for (int i = 0; i < random.Next(10,20); i++)
Console.WriteLine("A fortune teller whispers the following words:");
int luck = random.Next(100);