Custom Search box and drop down

I am a beginner on katalon studio. I am facing issue while using a custom search box and drop down thing. I am able to type on a search box. Searched results are also showing up but I am unable to click on a specific item. Attaching SS
image

Please read this advice:

I have a similar search box but I only need to select the first item. For that I use:

WebUI.clickOffset(findTestObject(‘myPage/input_OrganizationName’), 120, 45)

To get the numbers at the end, I had to do some math with the help of Chrome Tools. Using Chrome, hit F12 and then right click on the element and select Inspect. Look in the lower area for element properties.

Another way is to right click on the Omega-3 Pet option you want and select Inspect. In my case, I get a list of div elements. You could create a List of the div elements and then loop through until you get to the fourth option.

image