I've built my first ever simple MySQL DB with the myPhpAdmin interface.
1st users table: id (PK), email, fname, lname, isConsultant [bool]...
2nd consultants table: id (PK), title, bio...
3rd table linking both (some users are consultants, some are not): id (PK), user_id (FK), consultant_id (FK).
I have Primary Key and Foreign Key well assigned (I've followed quite a few video tutorials).
Now when I test and try to insert values into my 3rd table, I see "duplicate" options offered to me by the myPhpAdmin interface:
What did I do wrong? Please if you could use simple wordings since I'm new to this!?

