Help with Search Phrase code

Hello,
I need a little help with the code below. It works fine but I would like to add to it.

Right now it Displays: search results for Bridal Houston, Texas

I would like for it to display: Search results for Bridal in Houston, Texas
How do I add " in" into my code?
Thanks for your time and help in advance

$w("#categoryheadlineText").text = "Search result for: " + $w("#eventcategoryDropdown").value + ('#locationDropdown').value;
 let searchPhrase = $w("#eventcategoryDropdown").value + $w('#locationDropdown').value;
 
} 

Can I also add the filter results count text to the code? This result show the total after the dropdown has been filtered. Right now I have it calculating under the search for results text.

console.log("Dataset2 is now filtered");           
 let  numberOfResults = $w("#Membersdataset").getTotalCount()
           $w('#searchCount').text = String(numberOfResults); 
 
          console.log(numberOfResults); 
 

Let’s start with the first question; does replacing the following line:

let searchPhrase = $w("#eventcategoryDropdown").value + $w('#locationDropdown').value;

with the following line:

let searchPhrase = $w("#eventcategoryDropdown").value + ' in ' + $w('#locationDropdown').value;

effect the result you desire?

@aberquist No it doesn’t fix it…

@emsimmons77 My bad; try replacing:

$w("#categoryheadlineText").text = "Search result for: " + $w("#eventcategoryDropdown").value + ('#locationDropdown').value;

with the following:

$w("#categoryheadlineText").text = "Search result for: " + $w("#eventcategoryDropdown").value + ' in ' +  ('#locationDropdown').value;

@abergquist That works prefect. thank you for your help