string[] breakfastItems = { "egg", "yolk", "omlette", "pizaa", "bread" }; var eggiterianBreakfast = breakfastItems.Take(3); The above code sample would select the first three items from the array.