Lesson 6: String concatenation
To join texts together you use the + sign. For example "Hello, " + name gives a greeting with the name inside it. Two important points: you must add spaces yourself ("Hi" + name sticks into HiDana), and when you join a number to a string, the number automatically becomes text ("Age: " + 30 gives Age