returnHighestBidder may return a different highest bidder to win the auction than the actual highest one.
Note how highBid is always 0, and only the index is updated when calculating the highest bidder:
AuctionDemo.sol#L92
Compare it to how returnHighestBid() does it:
AuctionDemo.sol#L71
Update the highBid value:
