I need a breakdown in laymans terms as to where I am going wrong with getting my else statement to work. I thought I had figured it out but don't understand something as I keep running into this issue. Thanks
      if (country === "Brazil" || "Portugal") {
        alert("You speak Portuguese");
      } else {
        alert("You don't speak Portuguese");
      }
 
    