public void AddConsonant()
 {
     ScrambledLetters += _letterGenerator.GetConsonant();
     ConsonantCount   += 1;
     NotifyOfPropertyChange(() => CanAddConsonant);
     NotifyOfPropertyChange(() => CanAddVowel);
     NotifyOfPropertyChange(() => CanCheckWord);
 }