Selectors Skill test

Question
Target the <a> element with an href attribute that contains the word contact somewhere in its value and make the border orange ( border-color: orange ).
This (below) is my Solution
a[href~=“contact”]{border-color: orange;}
My solution is not giving me the expected output, where am I getting it wrong

could you share the link to the question

the link:https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Selectors/Selectors_Tasks
Selectors Five, specifically

@Rafael_Green, Thank you so much, I’ve seen my mistake.