using System.Collections.Generic;
public static void Main()
Program p =new Program();
string[] strArray = new string[] { "A","x","nI","dO","Uh","Eo","gI","gO","Ui","Ui","Ui","Ui","Ui","Ui","f","h","jj","hf","sd" };
List<String> VowelList = new List<String>();
List<String> NonVowelList = new List<String>();
List<String> List = new List<String>();
foreach (var item in strArray)
foreach(var i in item.ToCharArray())
if((char.ToUpperInvariant(i)=='A')||(char.ToUpperInvariant(i)=='E')||(char.ToUpperInvariant(i)=='I')||(char.ToUpperInvariant(i)=='O')||(char.ToUpperInvariant(i)=='U'))
if(VowelList.Count() > NonVowelList.Count())
len = NonVowelList.Count();
for(int i=0; i< len; i++)
if(i<NonVowelList.Count())
List.Add(NonVowelList[i]);