Do loop not working

Hi,

  do {
    customKey = customKeypad.getKey();
    if (customKey){
      return customKey;                 <<<Remove this line.
      Serial.println(customKey);
    }
  } while (customKey!="4");
}

Jacques