Create a function that is a Hashtag Generator by using the following rules:
false.str) or the result is an empty string, the function should return false.generateHashtag(" Hello World " ) ➞ "#HelloWorld"
generateHashtag("") ➞ false, "Expected an empty string to return false"
generateHashtag("Innokodakademija Is Great") ➞ "#InnokodakademijaIsGreat", "Should remove spaces."
N/A