X664: Join all strings in array

Complete the function joinStrings() so that it returns a string with all the strings in words concatenated. You may assume that the array words has some elements (it is not empty).

Examples:

joinStrings({"Register","And","Vote"}) -> "RegisterAndVote"

Your Answer:

Reset

Practice a different Java exercise

Feedback

Your feedback will appear here when you check your answer.