Can array be a parameter passed to a function? can function return value be an array?

 
thanks
 

Arrays can be passed to a function by reference.

Functions cannot return an array.

Changes made to arrays in the function when they passed by reference are real to the original arrays.

Reason: