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.