Copy-paste fix pattern
fn main() {
array scores = [10, 20, 30]
println(scores[0])
}
ClosedBit Docs
ClosedBit error docs
Indexed a non-indexable value. Square brackets were used on a value that is not an array or string.
Square brackets were used on a value that is not an array or string.
Only index arrays and strings. Convert the value or choose the correct variable before indexing.
fn main() {
array scores = [10, 20, 30]
println(scores[0])
}