Blockly.Blocks['ask_me_a_question'] = {
init: function() {
this.appendDummyInput()
.appendField("Ask me a question")
.appendField(new Blockly.FieldDropdown([
["What is the date today?","Date"],
["What is the time now?","Time"],
["How are you?","Feeling"],
["What is JavaScript?","JavaScript"],
["What is your name?","Name"]
]), "FIELDNAME");
this.setPreviousStatement(true, null);
this.setColour(230);
this.setTooltip("");
this.setHelpUrl("");
}
};