Your syntax "1:p" was a quoted string with three characters in it: a
numerical 1, a colon, and a lower-case "p".
My syntax "1:" & p is a string concatenation operation that will concatenate
"1:" with the contents of the variable p.
Do some string operations in normal code and you'll become familiar with the
syntax.