Code QuizBeginner

Enums

Find the incorrect way of assigning an enum value.

Codetypescript
enum Color {
  Red,
  Green,
  Blue
}
let c: Color = "Red";

What is the bug in this code?