What is the range of integers that will be generated by the following expression?
What will be an ideal response?
```
generator.nextInt(15) + 5
```
This expression will generate a random number in the range 5 to 19 (inclusive).
Computer Science & Information Technology