6. What does the following statement do?
Color color = new Color(200, 38, 145);
Creates a Color object with red=200, blue=38, and green=145.
Creates a Color object with red=200, blue=38, and green=145 and assigns its address to color.
Creates a Color object with red=200, green=38, and blue=145.
Creates a Color object with red=200, green=38, and blue=145 and assigns its address to color.