Raise-argument-error

#lang racket/base
(raise-argument-error 'monkey "banana" 3 0 1 2 3 4 5 6 7 8 9)

Yields error message

monkey: contract violation
expected: banana
given: 3
argument position: 4th
other arguments...:

I want to see all arguments.
I tried
(error-print-context-length 10000)
(error-print-width 10000)
but this doesn't help.

The example in
10.2 Exceptions.%28%28quote.~23~25kernel%29._raise-argument-error%29%29
shows all arguments.

How can I force procedure raise-argument-error to show all arguments?

Is this in DrRacket? You can click ... to expand the details.

For the command-line, it should show you the full output already.

Yes. DrRacket. Thanks, clicking ... works.