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