enums are named constant integers. it looks to me like it works; were you expecting to see the name of the enum variable as a string or something? I don't get any errors and it seems to do what it does ok....
you can indeed convert an int to an enum. But, an enum is just an integer, so you haven't accomplished much there beyond silencing an warning from the compiler.
If you want words, you need some other way.
What day of the week is it (1 - 7)? 3
What day of the month is it (1 - 31)? 6
What month is it (1 - 12)? 11
What year is it (####)? 2020
Tuesday, 6/11/2020