Retype and correct the code provided to combine two strings separated by a space. secret ID. contact (spaceChar): secret ID. contact (lastName): 1 important java.util.Scanner { 2 3 public class CombiningStrings { 4 public static void main (String argus) { 5 String secretID = “Barry” 6 String lastName = “Allen”: 7 char spaceChar = ‘ ‘: 8 9 secretID.concat(spaceChar): 10 secretID.concat(lastName): 11 System.Out.Println (secretID): 13 return: 14 } 15 }