function generateBitcoinSkepticism(oldPrice, newPrice) {
if (oldPrice > newPrice) {
return "It was a bubble all along.";
} else if (oldPrice < newPrice) {
return "Deflationary currencies can't work";
} else {
return "The market cap is too low to support a stable currency";
}
}