I have a .txt file in my source directory where each word is on a separate line like below:
apple banana orange
How do I read it in and store it in an array so that the array looks like: ["apple,"banana","orange"]?
Thanks