In "Access Array Data with Indexes" challenge there may be a wrong word

I believe it should say “arrays” instead of “strings” there
https://www.freecodecamp.org/challenges/access-array-data-with-indexes

Where?
Here?

Like strings, arrays use zero-based indexing, so the first element in an array is element 0.

That’s correct. It’s comparing arrays to strings.

Here

Array indexes are written in the same bracket notation that strings use […]

I thought like these are brackets [ ] and those are quotation marks " " and bracket notation would use brackets (instead of quotation marks like the string).

Fresh thank you!
When I read

… are written in the same bracket notation that strings use

I imagined something like this:
var myString = [cat];
And I was like hey strings use quotation marks not brackets