diff --git a/essentials/positionals/subscripting-ranges/index.md b/essentials/positionals/subscripting-ranges/index.md index fed320df0..8ec963098 100644 --- a/essentials/positionals/subscripting-ranges/index.md +++ b/essentials/positionals/subscripting-ranges/index.md @@ -6,7 +6,7 @@ title: Subscripting ranges A `Range` is a positional data type. As with arrays, you can access its individual elements. -For example, this is how you print the third element in the sequence of items that the range generates: +For example, this is how you print the fourth element in the sequence of items that the range generates: ```raku my $r = 10..20;