Write a program that asks the user for three names, then prints the names in reverse order.

Sample Run:

Please enter three names:
Zoey
Zeb
Zena

Zena Zeb Zoey


Hint: One solution to this challenge would be to use 3 separate variables, one for each name.