Code QuizAdvanced

Granting IAM Roles on a Project

Spot the mistake in a gcloud command that grants a user an IAM role on a project.

Codebash
# Grant a teammate the Viewer role on the billing-tracked project
gcloud projects add-iam-policy-binding my-project \
  --member="alice@example.com" \
  --role="roles/viewer"

What is the bug in this IAM binding command?