the && operator means "and."
ruby = "nifty" programming = "fun" if ruby == "nifty" && programming == "fun" puts "and" end