I have a .js file that performs a fairly simple task of building an array strings. Without going into too much detail, I have found Javascript the best language to perform this specific task.
What I want now is to access that array in my C# application. Javascript cannot access the filesystem, so writing the array to a file before reading it with C# is out of the question.
Is there an easy way to do this? Can these two languages interact at all?