Code QuizBeginner

Contradictory Persona Assignment

Find why assigning this persona confuses rather than guides the model.

Codejavascript
const messages = [
  {
    role: "system",
    content: "You are a senior cybersecurity expert. You are a complete beginner who knows nothing about security."
  },
  { role: "user", content: "How should I store passwords?" }
];

What is the bug in this persona assignment?