XYpad custom OSC address problem

When using xypad, I would like to define my own OSC addresses. By default, xypad uses individual addresses like /xy1, /xy2. However, I want to use a single address /xy to send two values simultaneously. In the "on value" section, I wrote the following:

var x = value[0]
var y = value[1]
send('/xy', x, y)

Strangely, the OSC addresses sent this way still become /xy1, /xy2. How can I solve this issue?

Set bypass to true to prevent the default messages from being sent.