//Display "Super Secret Message"
        lcd.clear();
        // Set the LCD cursor to the second line, 4th position
        lcd.setCursor(4,1);
        // Write 'Super Secret' beginning at that location
        lcd.print("Super Secret");
        // Move cursor to the third line, 8th position
        lcd.setCursor(7,2);
        // Write 'Message' beginning at that location
        lcd.print("Message");
        // Display the message for 5-seconds
        delay(5000);
        // Clear the display to prepare for the next time update
        lcd.clear();