using System;
public class Program
{
public static void Main()
var arr = new [] { "a", "b", "c", "d", "e" };
arr = Reverse(arr);
Console.WriteLine(String.Join(", ", arr));
}
private static string[] Reverse(string[] source){
//do stuff here
return source;