What code would you use to fill in the blank in order to print "Incorrect dialogue value" to the console?

int dialogue = 3;
void Start()
{ _______________ { case 2: print("Goodbye, old friend");
break;
case 1: print("Hello there");
break;
default: print("Incorrect dialogue value");
break; } };