An `enum.Enum` defines two members with the same value: `RED = 1` and `CRIMSON = 1` (in that order). Which statement is true?from enum import Enum class Color(Enum): RED = 1 CRIMSON = 1 BLUE = 2