How to bind value in multiple input

What seems to be the problem:
How to bind value in multiple input, if in blade i can make score to score[], how about in live wire? if i put score[] it will return error.

Steps to Reproduce:

thanks.

Does this work

wire:model="score.[]"

or bind it with your index
forelse($this->students [count($this->students) => ‘’] as $index => email)

then you can
wire:model="score.{{index}}"
not tested…