I was reading the post here and tried out the solutions.
However, the following does not produce any output. What am I missing?
arr=( '102 351' '576 324' '427 321' )
for str in "$arr[@]"; ✔
do ./findgcd $str | cat >> output;
done;
output file remains empty but no error is seen.