public String makeTags(String tag, String word) { String openTag = "<" + tag + ">"; String closeTag = ""; return openTag + word + closeTag; }