Problem
Write a program that given an array of Strings, return an array containing the reversed values of each of the strings in the array. E.g., a = {"hello", "how", "are", "you"}
Your program shall generate an array of String s with its elements in reverse order. E.g., the array of strings shall look as follows: b = {"uoy", "era", "woh", "olleh"};