Passing more than one argument in a function

Hi All,

Calling a function with one argument and storing the return value in a shell script is as below:( so far I know)

value="`fun_1 "argument1"`"

Its working perfectly for me.

Can u help me with passing more than one argument and storing the return value

Thnaks in advance
JS

value=$( fun_1 "argument1" "this is arg2" "i am arg3" )

The $( ) thing is the same as backticks in standard shells