each
block a specific x
number of times in Svelte? I know of Svelte's [`{#each}`](https://svelte.dev/docs/svelte/each) block which allows you to iterate over arrays or array-likes.
```svelte
<script lang="ts">
let names: string[] = ["bob", "joe", "Frankenstein"];
</script>
{#each names...