If you want to insert a new word into the text, you can use code like this instead of line 9
tf.TextRange.Text = tf.TextRange.Words(1, 2).Text & "newword " & tf.TextRange.Words(3, 2).Text
This will plug a new word between the second and third word of a four-word sentence.