It will return the index at the start of the word before the 75th character (including spaces and punctuation). If you subtract 1 from the index number that is returned, that will be the last whitespace before the 75th character. Remember that the count starts at 0 so if it returns a “72” then the whitespace will be at index 71. From there you can use iteration and a string range command to do the manipulating to bust it up into lines. The 75 can even be set as counter that is incremented (i.e 75, 150 etc)