I want to enter a number and have the console program return the name of the item from an enum
using System;
namespace ConsoleApp7
{
    class Program
    {
        enum planets { Mercury = 1, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune};
        static void Main(string[] args)
        {
            int selection = Convert.ToInt32(Console.ReadLine());
            selection = enum planets;
            Console.WriteLine("{0} is {1} planet(s) from the sun", planets, selection);
            Console.Readkey();
        }
    }
}
 
    