X563: Concatenate Strings

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 Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.