{0: "ребёнак", 1: "рибёнок", 2: "ребёнок", 3: "рибёнак"}
result = this.props.gamedata.questions[2].options.map((item, index, arr) => {
return (
<Button
key={index}
onPress={() => this.getQuestions(item)}
title={item}
>
{item}
</Button>
)
});