Which of the following is the correct way to create an enum type?
1) public enum class Status {CONTINUE, WON, LOST};
2) public class enum Status {CONTINUE, WON, LOST};
3) public enum Status {CONTINUE WON LOST};
4) public enum Status {CONTINUE, WON, LOST};