Multiple choice technology operating systems What is the output? #!/bin/sh msg1="one" Msg2="$msg1 two" Msg3="$msg2 three" echo $msg3 “””one” two” three” “one two three” one two three “$msg2 three” Reveal answer Fill a bubble to check yourself C Correct answer