Dropdown filters->shows no results

Hi,i am trying to setup a simple database filtering,works fine on text but won’t work for numbers
In the console shows that the code was executed but it brings no results.Any idea?suggestion please
screenshot

$w.onReady( function () {
});

export function button1_click(event, $w) {
wixData.query(“ForSale”)
.contains(“propertyType”, $w(‘#PropertyTypeDropDown’).value) //works
.contains(“bathrooms”, $w(“#dropdown9”).value) //returns no results
.find()
.then( (results) => {
console.log(“Dataset is now filtered”);
$w(“#repeater1”).data = results.items;
}). catch ((err) => {
console.log(err);
});
$w(‘#repeater1’).expand();
}

Add a ‘or’ into your query.
https://www.wix.com/corvid/reference/wix-data.WixDataQuery.html#or

Thank you I have already brushed through the documentation and tried that as well

.or(wixData.query(‘ForSale’).ge(‘bathrooms’,$w(“#dropdown9”).value))

do you have any other suggestion?
Thank you