Multiple choice ____________ returns an array comprising a function's argument list. func_get_arg func_get_args func_num_args none of these Reveal answer Fill a bubble to check yourself B Correct answer Explanation func_get_args() returns an array containing all arguments passed to the current function. This is useful for variable-length argument lists. Related functions: func_num_args() returns count, func_get_arg(n) returns single argument at position n.