This is supposed to broadcast a per-column bias across every row, but
it always adds bias[0] to every element — so column 2 never gets
bias[1]. Fix line 3 so each column gets its own bias value.
Expected output:
[[11, 22], [13, 24]]
The break is on line 3 — but read the whole snippet first.