Create a function called extractHashtags
that accepts a single string parameter, tweet.
-
The function should find all hashtags in the tweet. A hashtag is defined as a # symbol followed by one or more word characters (letters, numbers, and underscores).
-
Each found hashtag should be added to an array without the hashtag symbol #.
-
Finally, the function should display the array of hashtags to the console.