public void UtterAnEpicPhrase()
 {
     Console.WriteLine(_phrases[_rnd.Next(_phrases.Length)]);
     PhraseUttered?.Invoke(this, EventArgs.Empty);
 }
 public void UtterAnEpicPhrase()
 {
     Console.WriteLine("I'll be back!");
     PhraseUttered?.Invoke(this, EventArgs.Empty);
 }