Option Finder
Create a vector of strings: ["apple", "banana", "cherry"].
Use the .get() method to look up index 1 and store it in a variable.
Then use match to handle the Option:
Some(value)=> printFound:followed by the valueNone=> printNot found
Expected output:
Found: banana
rust
fn main() {
}