0
/ 5
Complete this method to return the two String parameters combined (concatenated) together.
Complete this method to return the two String parameters combined (concatenated) together.
Examples:
combineStrings("hello", "world") -> "helloworld"
combineStrings("First", "Second") -> "FirstSecond"
combineStrings("1", "2") -> "12"
Your feedback will appear here when you check your answer.