Use the code below to answer this question.

int id = 0;
cout << "ID: ";
cin >> id;

switch (id)
{
case 1:
cout << "Janet";
break;
case 2:
cout << "Mark";
break;
case 3:
case 5:
cout << "Jerry";
break
default
cout << "Sue";
} //end switch

What will the code above display when the id variable contains the number 4?

Group of answer choices

Janet

Jerry

Mark

Sue