Question about getting keyboard inputs

Hello people !
I’m getting inputs from Keyboard like numbers.
I can retrieve wheter the user is pressing, number 1, 2, 3, 4, 5, 6, 7, 8, 9 but what about number 10, 11, 12…
Is there a way to track this?
I don’t know if IsToggle could be related to that, I have been messing around with this code but I think it really sucks:


if (Key.isToggled(Key.DOWN)) {
  _global.knumbers.push(Key.getAscii());
}