What is the correct output for the following block of code? let redCars = 3; if (redCars > 0) { text('We have red cars in stock.'); } else { text('Sorry, no cars in stock.'); }
A. We have red cars in stock. B. We have no cars in stock. C.Sorry, no cars in stock. D. We have 3 cars in stock.