Im having trouble with #user story 8

Tell us what’s happening:
I am having trouble completing #user story 8. On line 63 of my code I have attempted to link my GitHub profile page but I do not pass when I run the test . Any help would be greatly appreciated, Thank you!

Your code so far
line 63 of code: <a id=“profile-link” target+"_blank" href=“https://github.com/dgib94”> GitHub

link to code: https://codepen.io/dgib94/pen/dyMzVQZ

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0.

Challenge: Build a Personal Portfolio Webpage

Link to the challenge:

@dgib94, when a test fails you can click on the red button to see which test failed and why. The test runs and tells you what it was looking for.
In this case the failing test says;

My portfolio should have a link with an id of "profile-link", which opens my GitHub or FCC profile in a new tab.
#profile-link should have a target attribute : expected false to equal true

Your target attribute, target+"_blank" is incorrect which causes the test to fail.

Hope that helps.

Thank you for the information and for the solution. I knew it was a simple typing error i just could not seem to locate it. Now that I know this the rest of my projects should run more smoothly. Thank you again!