using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = string.Join(" ", GetArray());
Console.WriteLine(s);
}
static string[] GetArray()
{
string[] arr = new string[3];
arr[0] = "c#";
arr[1] = "java";
arr[2] = "c++";
return arr;
}
}
}
/*
run:
c#
java
c++
*/