How to save array option as text and not integer?

Your options should have a key => value structure if you want it to return something other than the key number:

'options'     => array(
    'option_a' => __('option a', 'woocommerce' ),
    'option_b' => __('option b', 'woocommerce' )
    )
);