LINQ C#

using System;
using System.Collections.Generic;
using System.Linq;
public class MainClass {
    public static void Main() {
        IEnumerable vowels = "aeiou";
        IEnumerator rator = vowels.GetEnumerator();
        IEnumerable query = "Not what you might expect";
        foreach (char vowel in "aeiou") {
            char temp = vowel;
            query = query.Where(c => c != temp);
        }
    }
}