using System.Collections.Generic;
namespace StarWarsMemeApp
static void Main(string[] args)
int dayOfWeek = (int)DateTime.Today.DayOfWeek;
List<List<string>> allMemes = new List<List<string>>
"Picture of Yoda saying 'Do or do not, there is no try'",
"Picture of Darth Vader saying 'I find your lack of faith disturbing'"
"Picture of Han Solo saying 'Never tell me the odds'",
"Picture of Princess Leia saying 'Help me Obi-Wan Kenobi, you're my only hope'"
"Picture of Luke Skywalker saying 'I am a Jedi, like my father before me'",
"Picture of C-3PO saying 'We seem to be made to suffer. It's our lot in life.'"
"Picture of Darth Vader saying 'I am your father'",
"Picture of Chewbacca saying 'Rrrrrrrrrrrrrrrrrrrrr'"
"Picture of Darth Vader saying 'I find your lack of caffeine disturbing'",
"Picture of Chewbacca saying 'Ugh, it's Monday'"
"Picture of R2-D2 saying 'Bleep bloop, I'm late for work!'",
"Picture of Princess Leia saying 'I have a bad feeling about this'"
var random = new Random();
var todayMemes = allMemes[dayOfWeek];
var randomMeme = todayMemes[random.Next(todayMemes.Count)];
Console.WriteLine("Today's Star Wars meme:");
Console.WriteLine(randomMeme);