Get title from IDs in a string

get_the_title takes an int, not an array of ints, and therefore returns a string, not an array of strings.

So just break that bit out into a loop:

$titles="";
foreach ($act_name as $act_name_item) {
  $titles .= ($titles ? ',' : '') . get_the_title ($act_name_item);
}