Code QuizBeginner

Avoiding hardcoded keys

Spot the security mistake in how the API key is provided.

Codepython
from openai import OpenAI

client = OpenAI(api_key="sk-proj-abc123realsecretkey")

What is the bug in this code?