Which assignment correctly creates a shell variable named my_var with the value Hello, Linux?
my_var
Hello, Linux
$my_var="Hello, Linux"
my_var = "Hello, Linux"
echo my_var="Hello, Linux"
my_var="Hello, Linux"