👉 In computer programming, "selectees" are used to refer to the list of elements that a function or procedure is selecting from. For instance, in a program where we want to select only certain numbers from an array, we can use the following syntax: ```python numbers = [1, 2, 3, 4, 5] selected_numbers = [num for num in numbers if num % 2 == 0] ``` This statement selects all even numbers from the