Code QuizBeginner

Reading the key from env

Spot the mistake when loading an API key from environment variables.

Codepython
import os
from openai import OpenAI

api_key = os.environ("OPENAI_API_KEY")
client = OpenAI(api_key=api_key)

What is the bug in reading the environment variable?