I did Ctrl-A and copied the whole text:
Randomize
Wscript.Echo Int( ( 3394 - 1 + 1 ) * Rnd + 1 )
myString = "PRINCE GEORGE"
WScript.Echo LeftPad( myString, 3, "+" )
WScript.Echo LeftPad( myString, 30, " " )
Function LeftPad( strText, intLen, chrPad )
LeftPad = Left( strText & String( intLen, chrPad ), intLen )
End Function
From 2-47 (last char on the 2nd row) I highlighted it up to 1-1 and did the Ctrl-D
Yeah, besides, I expected HE to highlight only the newly added text, but it did the one in the middle.