Create a program that takes as an input a string key, and then uses an if statement to check if the key exists within the fruits map.
For example, if the key input is pear, your program should output: "The fruit pear 🍐 is in the map".
And in case the key input is a fruit that doesn't exist in the map e.g. kiwi, your program should output: "The fruit kiwi is not in the map".