Which line of code will create a Python dictionary?

(1 point)
Responses

sideItems = {"steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad"}

sideItems = {"steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad"}

sideItems = ("steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad")

sideItems = ("steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad")

sideItems = {"steak", "baked potato", "enchiladas", "rice and beans", "poke bowl", "macaroni salad"}

sideItems = {"steak", "baked potato", "enchiladas", "rice and beans", "poke bowl", "macaroni salad"}

sideItems = ["steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad"]

sideItems = ["steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad"]

1 answer

The correct line of code to create a Python dictionary is:

sideItems = {"steak" : "baked potato", "enchiladas" : "rice and beans", "poke bowl" : "macaroni salad"}