Change the existing code so the program displays the first and last names on one line. Use the concatenation operator(i.e. +) to format and ouptut the full name. You will also need to add a space between the first and last names.
Your output should look like the following:
Rowan Smith
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Switch to Next Tab CTRL + Tab
Switch to Previous TabCTRL + Shift + Tab
Blocks
Hint
Great job!
Try again
One solution would be to modify the output statement so it displays the first name and concatenates a space and the last name. This can be done by using two + operators (i.e. output firstName + " " + lastName)