Montel wants to use a certain street name as the data for a variable called “home.” Which of these lines of code should Montel use? (1 point)

Montel can use any of these lines of code to assign the street name to the variable "home," depending on the programming language he is using. However, since the provided options are not listed, it is not possible to determine the correct line of code.

the options are print(“home”) print(“home”) home is Elmdale Avenue home is Elmdale Avenue print(“home is Elmdale Avenue”) print(“home is Elmdale Avenue”) home = “Elmdale Avenue”

In that case, Montel should use the line of code "home = 'Elmdale Avenue'" to assign the street name "Elmdale Avenue" to the variable "home." This will store the value "Elmdale Avenue" in the variable "home" for later use in the program.