You're working on a TV that has a hard coded list of channels (use an enum for this list) and you're asked to create a mechanism
to switch channels. Start by creating an enum class that holds 4 to 5 channels. Each channel has a network name to identify it and a channel number as its value. In a class called Television, create a method called changeChannel() that takes an enum from the channel class as input. In the method, use switch to print out a randomo message for each channel depending on what input was provided?