Code QuizBeginner

Message roles structure

Find the invalid role used in the messages array.

Codepython
messages = [
    {"role": "system", "content": "You are helpful."},
    {"role": "human", "content": "What is 2+2?"}
]
response = client.chat.completions.create(model="gpt-4o-mini", messages=messages)

What is the bug in this code?