Not Displaying the count on the output

Sorry for this basic questions, it there a way just to show popular name and not the count once the code has been executed?

example <RETURN pop.Name, count(pop.Name) as frequency
ORDER BY frequency DESC
LIMIT 2>
Thank you

Hello @HelloDearSir and welcome to the Neo4j community :slight_smile:

WITH pop.Name AS name, count(pop.Name) AS frequency
ORDER BY frequency DESC
LIMIT 2
RETURN name

Regards,
Cobra