// make this a while let statement - remember that vector.pop also adds another layer of Option<T>
// You can stack `Option<T>`'s into while let and if let
while let Some(Some(value)) = optional_values_vec.pop() {
println!("current value: {}", value);
}