Can i get the name of the elements not the values?
Code:
Private Enum myName
    Alex = 1
    Bert = 2
    Charlie = 3
    Danny = 4
    Evan = 5
End Enum
I want to list down the names not the values.

Thanks