Write a method called makeRow that is passed two arguments: an int and a String. It returns a String containing n copies of s, concatenated in a row. For instance, if we call the method with makeRow(5, "*"), the method returns *****.
(note: you don't have to ask the user for the values, you can just specify 5, "*" in the main to print *****)
Write a main method that uses the method to print the string