Implement the print3 method. The method should display the passed string (word) three times, but on the same line. Words must be separated by a space and should not merge into one. (THIS IS MY CODE BUT IT IS WRONG) public class Solution { public static void print3(String s) { System.out.println("word" + " "); }