1var fruits = ["Banana", "Orange", "Lemon", "Apple", "Mango"];
2var citrus = fruits.slice(1, 3);
3// ["Orange", "Lemon"]
1var colors = ["red", "black", "green", "yellow", "blue","brown"];
2var subset_of_colors = colors.slice(1, 3); //["black", "green"]