Example includes something not in the pseudocode

There’s this question on the site:

var score
score <- 3
score <- score + 1
score <- "The score is: " + score

But nowhere in the Reference Guide does it say that you can use the + operator to add strings or strings with numbers. I don’t think this is legal code.

Thank you for reaching out. This is valid code. The curriculum does talk about string and number concatenation in Unit 4 when they discuss variables.