So I'm wondering if/how I can use a value in a object as a arg in a function ex:
var mousePos = {
chaos: (-950, 22)
}
console.log(mousePos.chaos) // chaos
mouse.Move(mousePos.chaos) // which would take two args, and then output Invalid number of arguments.
22, and the-950will be lost.[-950, 22]