jQuery select2 obtém o valor da tag de seleção?

Olá amigos este é o meu código:

<select id='first'>
  <option value='1'> First  </option>
  <option value='2'> Second </option>
  <option value='3'> Three  </option>
</select>

Este é o meu código select2:

$("#first").select2();

Abaixo está o código para obter o valor selecionado.

$("#first").select2('val'); // It returns first,second,three.

Isso é retornar um texto comofirst,second,three&nbsp;e eu quero pegar1,2,3.
Significa que preciso do valor da caixa de seleção, não do texto.