private static string GetAVowel()
 {
     return(Constants.GenerateName.Vowels[RandomNumberGenerator.GetRandomValue(0, Constants.GenerateName.Vowels.Length)]);
 }
 private static string GetAConstant()
 {
     return(Constants.GenerateName.Consonants[RandomNumberGenerator.GetRandomValue(0, Constants.GenerateName.Consonants.Length)]);
 }