returning gameStatus & rolls
means "return the bitwise and of gameStatus and rolls" which probably is not what you want
you have some options here:
- return an array
- create a class that represents the response with a property for each value and return an instance
- use one of the many java collections to return the values (probably lists or maps)