let yCarros [40, 96, 150]
//carro1
let xCarro = 600;
//carro2
let xCarro2 = 600;
//carro3
let xCarro3 = 600;
function mostraCarro(){
image (imagemCarro, xCarro, yCarros[0], 50, 40);
image (imagemCarro2, xCarro2, yCarros[1], 50, 40);
image (imagemCarro3, xCarro3, yCarros[2], 50, 40);
}
function movimentaCarro (){
xCarro -= 2;
xCarro2 -=3;
xCarro3 -=2.5;
}
function voltaPosicaoInicialDoCarro() {
if (xCarro1 < -50) {
xCarro1 = 600;
}
if (xCarro2 < -50) {
xCarro2 = 600;
}
if (xCarro3 < -50) {
xCarro3 = 600;
}
}