Your task is to fix the method concatStrings. The method should concat two strings and avoid NPE.
If both of the strings are null, you should return an empty string ("");
If only one string is null, you should return the other string.
Look at the examples: