I can't get the value selected when i press the "enviar" button this is my code i made a edit ths snippet is working but not this code the console.log is showing always "sugerencias"
html
            <ion-content class="has-header has-subheader">
    <button ng-click="im(seleccionado)">sdaodisa</button>
    <form>
        <div>
            <label class="item item-select">
                <span class="input-label">Asunto</span>
                <select ng-model="seleccionado" ng-options="item for item in arrayj"></select>
            </label>
        </div>
    </form>
</ion-content>
js
var app = angular.module('starter');
app.controller('controladorSugerencias', function ($scope) {
    $scope.arrayj = ['sugerencias', 'reclamos'];
    $scope.seleccionado = $scope.arrayj[0];
    $scope.im = function () {
        console.log($scope.seleccionado)
    };
});
