Code QuizBeginner

Structuring the messages array

Spot the wrong key name in a message object.

Codepython
response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "text": "Summarize this."}],
)

What is the bug in the messages array?