If employeeType has a value of 1, what is the value of emplo…

If employeeType has a value of 1, what is the value of employeeDescr after this statement is executed?string employeeDescr = employeeType switch{    1 => “Management”,    2 => “Administration”,    3 => “Marketing”,    _ => “Development”};