This time write a program that outputs a character's name on one line, but solve the problem in a slightly different way. Use and modify each of the three block in the tray to declare the firstName, lastName, and fullName variables. Instead of using concatenation in the output block, use it in the fullName variable block.
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
Drop in the three variable declarations from the tray. Assign character's first and last name to each matching variables. Then use concatenation to format the fullName variable. This can be done by using two + operators (i.e. text fullName = firstName + " " + lastName).