string[] breakfastItems = { "egg", "yolk", "omlette", "pizaa", "bread" }; var letUsTryBreakfast = breakfastItems.Skip(3); The above code sample would select the last two items from the array.