I\'m trying to take a string:
String s = \"This is a String!\";
And return all 2-word pairs within that string. Namely:
{\"this
Total pair count = Total number of words - 1
And you already know how to count total number of words.