pub fn multi_select<T>(label: &str, items: &[T]) -> Vec<usize>where T: Display,
Prompt the user to select multiple items from a list, returning their indices.
Panics when terminal input cannot be read.