using System.Collections.Generic;
public class Affirmations
public static void Main()
List<string> love = new List<string>()
"You deserve to have fun",
"Your smile makes me smile",
"Your feelings are valid",
Random rand = new Random();
int pick = rand.Next(love.Count);
Console.WriteLine(love[pick]);