Given code import java.awt.*; public class BullsEye{ public static void bullsEye(){ //Draw a BullsEye below. The bullseye should be centered on (0,0). //The outermost radius should be 1.0, the next 0.8, //the next 0.6, the next 0.2, and innermost 0.2. //The colors should be in the order RED WHITE BLUE WHITE RED. } public static void main(String[] args){ StdDraw.setScale(-1.0, 1.0); bullsEye(); }}