display top 10 rows after arrange verb

I want to only display top 10 rows of individual_score on the below code. I am unable to achieve that. I tried top_n() after arrange but that is not working. I also tried to filter (individual_score == top_n()) but that did not work either.Can anyone help me how to achieve only 10 rows. With the code below it results 11,294 rows

highest_individual_score <- innings%>%
group_by(match_id,batsman)%>%
summarize(individual_score = sum(batsman_runs))%>%
arrange(desc(individual_score))