Find result using for loop

I want to print each file i found using the find command. And not able to list the files at all here is the code

SEARCH_DIR="/filesinfolder";
PATH_COUNT=0
 
for result in "'/usr/bin/find  $SEARCH_DIR  -daystart \( \( -name 'KI*' -a -name '*.csv' \) -o  -name '*_xyz_*' \)  -mtime 1'"
 
do
  PATH_RESULTS[$PATH_COUNT]="$result"
  echo "${PATH_RESULTS[$PATH_COUNT]}"
  # more code
  #
  let PATH_COUNT=PATH_COUNT+1
done

If you are using Kshell, something like this might work for you:

find . -name "*.cvs" | while read filename
do
     # code to manipulate filename
done