It should return 7 one for each Character and a single byte storing the lengeth of the string.

Short Strings come from old Turbo Pascal days where the maximum length of a string was 255 characters. Each string was actually an array of characters with the zero index being a byte representing the length of the string. (This also allows you to do something like Password[1] to return the first character in the Password string)