Here my situation
I want to add each index in a separate row but my record is shown in the same row as that EnglishMathWeb
demo
const Subject = ["English","Math","Web"]
{Subject ? Subject.map((item,i)=>{
<Text key={i}>{item}</Text>
}
): <></>}