let ball = $('.ball')
$('.ball').on('click', function () {
let randomNum = Math.floor(Math.random() * 85) + 1;
if (ball.position().left == 0) {
ball.css('left', 1000)
} else {
ball.css('left', 0)
}
ball.css('top', (randomNum))
// alert('Гооол!');
});