Logical Path: Help me!

Hi welcome to the forum, sorry for the delay.
My advice would be to check secretA and secretB like they do here:

var secretC = secretA && secret B;

for all the secret checking, rather than doing this:

if (secretA == "true" or secretB = "true"):

mainly because the code above (the code you wrote) doesn’t work. Are you used to doing Python? Because you’ve used a : at the end of the if statement and an or in the middle. If not my advice would be to read the hints carefully as they tell you what you need to know.
So you could start line 16 like this:

var secretD = secretA || secretB // this is how you do or in javascript

and then move on from there.
You’re also missing the section where you go back down from the cross you go to.
E.g. the else part in the example code.
I hope this helps.
P.S. in future can you put your code actually onto the forum rather than in a screenshot: instructions here: How to Post Your Code With Radiant, Harmonious Formatting.