I'm getting the error: error CS0266: Cannot implicitly convert type System.Collections.Generic.IEnumerable<string>' to
string[]'. An explicit conversion exists (are you missing a cast?) Where do I cast?
IEnumerator LoadAllImages()
{
string[] ARCTOPITHECUSPaths = Directory.GetFiles(@"/Users/kenmarold/Screenshots/ARCTOPITHECUS/", "*.png"); // get every file in chosen directory with the extension.png
string[] GULONPaths = Directory.GetFiles(@"/Users/kenmarold/Screenshots/GULON/", "*.png");
galleryArray = ARCTOPITHECUSPaths.Concat(GULONPaths);