Which statement captures the complete output of ls -l in a shell variable?
ls -l
$ls_output ls -l
ls_output='ls -l'
ls_output=$(ls -l)
ls -l > ls_output