Repeater - How many items shown?

Solved!
Hello!
How can I get how many items are shown in a repeater? I’m trying to make something like this:
You’ve seen 30 of 68 entries. Load more

I knew that there’s $w(“#myDataset”).getTotalCount() to get the total amount of entries, but I’d need to get how many entries are currently loaded in the repeater. Is this possible?

Solution:
I made a wixStorage session variable and gave it the value 12, which is the number of entries my dataset loads. Each time the Load more button is clicked, 12 is added to the variable and the text updates to show the variable. See it in action here: https://webmaq.wixsite.com/kennis/forum

I solved it myself:

I made a wixStorage session variable and gave it the value 12, which is the number of entries my dataset loads. Each time the Load more button is clicked, 12 is added to the variable and the text updates to show the variable. See it in action here: https://webmaq.wixsite.com/kennis/forum