What is the output of this program?

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

print("The steak is served with", sideItems.get("steak"))

(1 point)
Responses

an error message

an error message

The steak is served with steak : baked potato

The steak is served with steak : baked potato

The steak is served with baked potato

The steak is served with baked potato

The steak is served with “steak”

1 answer

The output of this program is:

The steak is served with baked potato