**In Swift using Xcode, please:**
Write a switch statement for characters that determines whether a given character is a vowel (for the purposes of this assignment, "y" is considered a vowel), consonant, or number. Write the switch in the most efficient way you can, using Swifty mechanisms like compound cases or ranges, if appropriate.
Note that the character may not be a letter or number, so if it is neither, print "Unrecognized Character".
Demonstrate that your switch works on an actual character. *Note*: Characters in Swift are defined with ' not ", so:
var x = 'x' // This is the character 'x