diff --git a/src/index.ts b/src/index.ts
index 28c3ee8..46c2cfd 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -35,7 +35,8 @@ async function run() {
         startupOptions
     );
 
-    await exec.exec("ls","/temp",execOptions)
+    let myArray: string[] = ["/temp"];
+    await exec.exec("ls",myArray,execOptions)
 }
 
 run().catch((e) => {