Stuck in Selecting from many options with Switch Statements

Hi!
Im stuck in this challenge! where are you supposed to put the break;? tried with putting it after each case(the three first ones) but i still cant go though? Anyone have any hints of how to do this?

In every case you will have something like that:
case 1:
answer = “alpha”;
break;

and outside of the switch
return answer

2 Likes