Ad

no is in foundations of english and doesn't know how to write normal sentences.

luckily no is a prodigy in coding and knows how to make string arrays in the form of sentences

turn no's arrays into sentences

ex.
["the", "dog", "is", "brown"]
"the dog is brown"

using System;

public class Kata
{
  public static string ArrayToSentence(string[] words)
  {
    // Your code here!!!
  }
}