0
/ 3.0
[Based on an exercise at https://codeworkout.cs.vt.edu/]
Given an array of Strings, return a single String that is made up of all strings...
[Based on an exercise at https://codeworkout.cs.vt.edu/]
Given an array of Strings, return a single String that is made up
of all strings in the array concatenated together in reverse order. For example,
if the array contains {"Athos", "Porthos", "Aramis"}, the string returned
would be "AramisPorthosAthos".
Examples:
reverseConcatStrings({"Athos","Porthos","Aramis"}) -> "AramisPorthosAthos"
Your feedback will appear here when you check your answer.