Problem Statement Design a program that prompts the user to enter the names of two primary colors to mix. If the user enters anything other than “red,” “blue,” or “yellow,” the program should display an error message. If the user enters the same primary color, the program should display an error. The program should display the name of the secondary color that was obtained from the two primary colors. The colors red, blue, and yellow are known as the primary colors because they cannot be made by mixing other colors. When you mix two primary colors, you get a secondary color as shown: Primary Mix Secondary Color Red and Blue Purple Red and Yellow Orange Blue and Yellow Green Your program should consist of the following: Module main. Accepts input of the two colors. Passes the two colors to mixColors to determine the result when the two colors are mixed. Module mixColors. Accepts two colors. Uses decision statements to determine the result when the two colors are mixed. Create Java flowchart