Hi, my script is as below.
<defaults>        
    / screencolor = black
    / txbgcolor = black
    / txcolor = white
    / fontstyle = ("Arial", 5%)
    / canvasaspectratio = (4,3)
</defaults>
<item Instruction_Speed>
    /1 = "会話の録音を聞いて頂きます。"
    /2 = "その録音の発話スピードに関して、
    速く感じますか?
    遅く感じますか?    
    その程度を評価してください。"
</item>
<text Instruction_Speed>
    /items = Instruction_Speed
    /hjustify = center
    /size = (90%, 60%)
    /position = (50%, 85%)
    /valign = bottom
    /select = sequence
</text>
<text Spacebar>
    / items = ("スペースキーを押して、続けてください。")    
    / position = (50%, 95%)
    / valign = bottom
</text>
<trial Instruction>
    / stimulustimes = [1 = Instruction_Speed, Spacebar]
    / correctresponse = (" ")
    / errormessage = false
    / recorddata = false
</trial>
<text Rest>
    / items = ("しばらく休んでください。")
    /hjustify = center
    /size = (90%, 60%)
    /position = (50%, 85%)
    /valign = bottom
</text>
<trial Rest>
    / stimulustimes = [1= Rest, Spacebar]
    / correctresponse = (" ")
    / errormessage = false
    / recorddata = false
</trial>
<sound Sample>
 / items = ("K010_016_107.wav")
 / items = ("T021_005_108.wav")
 / items = ("T013_006_116.wav")
 / items = ("K003_008_118.wav")
 / items = ("T008_005_129.wav")
 / items = ("T020_007_134.wav")
 / select = noreplacenorepeat
 / playthrough = true
</sound>
<item Number>
/1 = "1番"
/2="2番"
/3="3番"
/4="4番"
/5="5番"
/6="6番"
</item>
<text Number>
    /items = Number
    /position = (50%, 50%)
    /fontstyle = ("Arial", 15%, true)
    /select = sequence
</text>
<text Blank>
    /items = (" ")
    /position = (50%, 50%)
    /fontstyle = ("Arial", 50%, true)
</text>
<picture scale>
    / items = ("A01_scale.jpg")
    / position = (50%, 50%)
    / size = (100%, 100%)
</picture>
<trial speed>
/pretrialpause = 1000
/posttrialpause = 2000
/stimulustimes = [0 = text.Number; 1000 = text.Blank, sound.Sample, picture.scale] 
/inputdevice = keyboard
/validresponse = ("1","2","3","4","5","6","7")
/recorddata = true
</trial>
<block Speed1>
/ trials = [1-2=sequence(Instruction); 3-4 = random (trial.speed); 5=Rest]
/ recorddata = true
</block>
<block Speed2>
/ trials = [1-2 = random (trial.speed)]
/ recorddata = true
</block>
<expt Speed>
/ blocks = [1=Speed1;2=Speed2]
/ recorddata = true
</expt>
<data>
/ columns = (date, time, group, subject, stimulusnumber, stimulusitem, stimulusitem, stimulusitem, response, latency)
</data>
The script could be run without error. However, the data recorded  as below.

The recorded reponse is wrong. What I entered is "5, 7, 1, 3", while the recorde reponse is "6, 8, 2, 4".
Could I get some advise to fix this to the right record?