Change the last line to:
lcd.print("Launch in" + (millis() / 1000));
The + concatenates the string Launch in with the number that results from millis() / 1000.
Change the last line to:
lcd.print("Launch in" + (millis() / 1000));
The + concatenates the string Launch in with the number that results from millis() / 1000.