adwsystems:
Does it only display Phrase (?) while the button is pressed?
Yes, only while button is pressed. There must be a problem of code because when button isnt pressed, We can see both prashe number and Press Button to... swapping very very fast.. We may have to add some delays or INTERRUPTS maybe ?
UKHeliBob:
byte index = random(0, 4); //get a number between 0 and 4 :DNot actually a problem, but the comment (or the code) is wrong. index will get a value between 0 and 3. In fact it better NOT get a value of 4 because your phrases are numbered 0, 1, 2 and 3 and there is no number 4
Alright, thanks for improving, I thought they are numbered from 1 to 4.. These small errors can really help improving.