Am I being a pain (again)?
However, to keep digging my own grave - I take it you mean that in the case of some questions you know (dare I say assume) that there is only one feedback item and it must be in the first position (offset 0) of the array? If so then I think that for clarity that should be made specific. I would either refactor/generalise the code so that it doesn't work this way, or do something like..
$singlefeedback = feeback[0]
..stuff to process feedback...
which is a bit longer but makes it more readable. feedback[FIRSTITEM] wouldn't really help in that case.
OK... I'll shut up now!!