# Error with online experiment-stuck on initilising

**URL:** https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284
**Category:** Online experiments
**Created:** [June 15, 2020, 11:13pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284 "2020-06-15T23:13:56Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 15, 2020, 11:13pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/1 "2020-06-15T23:13:56Z")

</div>

URL of experiment:

> **[html · master · Qiushan Liu / Interleaved](https://gitlab.pavlovia.org/qiushan.liu/interleaved/tree/master/html)**
>
> \-WCST -Stroop -Interleaved

Description of the problem:  
I created the experiment in Psychopy builder with a few code components inserted and it ran smoothly locally. I used the built-in function to convert the python script to Java script and uploaded it onto Pavlovia. I was trying to pilot the experiment and it simply doesn’t work. I looked at the errors and there are two error messages:  
SyntaxError: Unexpected token ‘\*’. import call expects exactly one argument.  
Failed to load resource: the server responded with a status of 404 ()

I am not sure how to deal with these errors.  
Thank you!

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 16, 2020, 11:13am UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/2 "2020-06-16T11:13:00Z")

</div>

You’ve got import random in code\_2 of routine A\_T

You need an alternative. Have a look at my crib sheet. [https://docs.google.com/document/d/13jp0QAqQeFlYSjeZS0fDInvgaDzBXjGQNe4VNKbbNHQ/edit?usp=sharing](https://docs.google.com/document/d/13jp0QAqQeFlYSjeZS0fDInvgaDzBXjGQNe4VNKbbNHQ/edit?usp=sharing)

For example, you could define randint in code\_JS and then use randint(0,3) for values 0-2.

I think that the following should work

code\_JS Begin Experiment

```auto
randint = function(min, maxplusone) {
  return Math.floor(Math.random() * (maxplusone - min) ) + min;
}

```

code\_2 Begin Experiment

```auto
conditions = "ABC"
condition2=conditions[randint(0,3)]

```

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 16, 2020, 6:06pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/3 "2020-06-16T18:06:22Z")

</div>

Hello,

Thank you so much for your help! It worked, I have another question. As I am trying to pilot it, when I get to my second task, the Stroop task, I ran into an error.

 ![Screen Shot 2020-06-16 at 1.27.58 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/d/0/d071a85ed9ccab76d386f85814e4907fb47a4a2a.png)  
I am very confused regarding how to address this error. The task worked fine locally in its python script. Do you happen to have any advice regarding how to address this type of error? Thank you so much!

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 16, 2020, 6:37pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/4 "2020-06-16T18:37:50Z")

</div>

The console might give you a more specific error message.

What Begin Experiment code do you have (assuming that the syntax error is at the start)?

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 16, 2020, 9:59pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/5 "2020-06-16T21:59:49Z")

</div>

Hello,

I am not sure how to interpret the error message from the console(see below).

 ![Screen Shot 2020-06-16 at 5.55.22 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/5/3/5372fbe2deec8c59f1ab080ea568ac1e16dff7f7.png)

The code for the initialization of the step that ran into error is:  
St\_PracClock = new util.Clock();  
text\_7 = new visual.TextStim({  
win: psychoJS.window,  
name: ‘text\_7’,  
text: ‘default text’,  
font: ‘Arial’,  
units: undefined,  
pos: [0, 0], height: 0.1, wrapWidth: undefined, ori: 0,  
color: new util.Color(‘white’), opacity: 1,  
depth: 0.0  
});

text\_8 = new visual.TextStim({  
win: psychoJS.window,  
name: ‘text\_8’,  
text: “Press ‘g’ if the word is in green ink.\nPress ‘y’ if the word is in yellow ink\nPress ‘r’ if the word is in red ink\nPress ‘b’ if the word is in blue ink”,  
font: ‘Arial’,  
units: undefined,  
pos: [0, (- 0.3)], height: 0.03, wrapWidth: undefined, ori: 0,  
color: new util.Color(‘white’), opacity: 1,  
depth: -1.0  
});

key\_resp\_8 = new core.Keyboard({psychoJS: psychoJS, clock: new util.Clock(), waitForStart: true});

The code for the start of the experiment is:  
import { PsychoJS } from ‘./lib/core-2020.1.js’;  
import \* as core from ‘./lib/core-2020.1.js’;  
import { TrialHandler } from ‘./lib/data-2020.1.js’;  
import { Scheduler } from ‘./lib/util-2020.1.js’;  
import \* as util from ‘./lib/util-2020.1.js’;  
import \* as visual from ‘./lib/visual-2020.1.js’;  
import \* as sound from ‘./lib/sound-2020.1.js’;

// init psychoJS:  
const psychoJS = new PsychoJS({  
debug: true  
});

// open window:  
psychoJS.openWindow({  
fullscr: true,  
color: new util.Color([0, 0, 0]),  
units: ‘height’,  
waitBlanking: true  
});

// store info about the experiment session:  
let expName = ‘ArithComb’; // from the Builder filename that created this script  
let expInfo = {‘participant’: ‘’, ‘session’: ‘001’};

// schedule the experiment:  
psychoJS.schedule(psychoJS.gui.DlgFromDict({  
dictionary: expInfo,  
title: expName  
}));

const flowScheduler = new Scheduler(psychoJS);  
const dialogCancelScheduler = new Scheduler(psychoJS);  
psychoJS.scheduleCondition(function() { return (psychoJS.gui.dialogComponent.button === ‘OK’); }, flowScheduler, dialogCancelScheduler);

// flowScheduler gets run if the participants presses OK  
flowScheduler.add(updateInfo); // add timeStamp  
flowScheduler.add(experimentInit);  
flowScheduler.add(GInsRoutineBegin());  
flowScheduler.add(GInsRoutineEachFrame());  
flowScheduler.add(GInsRoutineEnd());  
const DCILoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(DCILoopBegin, DCILoopScheduler);  
flowScheduler.add(DCILoopScheduler);  
flowScheduler.add(DCILoopEnd);  
const DCPLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(DCPLoopBegin, DCPLoopScheduler);  
flowScheduler.add(DCPLoopScheduler);  
flowScheduler.add(DCPLoopEnd);  
flowScheduler.add(DC\_BrkRoutineBegin());  
flowScheduler.add(DC\_BrkRoutineEachFrame());  
flowScheduler.add(DC\_BrkRoutineEnd());  
const DCTLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(DCTLoopBegin, DCTLoopScheduler);  
flowScheduler.add(DCTLoopScheduler);  
flowScheduler.add(DCTLoopEnd);  
flowScheduler.add(GinsRoutineBegin());  
flowScheduler.add(GinsRoutineEachFrame());  
flowScheduler.add(GinsRoutineEnd());  
const StILoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(StILoopBegin, StILoopScheduler);  
flowScheduler.add(StILoopScheduler);  
flowScheduler.add(StILoopEnd);  
const StPLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(StPLoopBegin, StPLoopScheduler);  
flowScheduler.add(StPLoopScheduler);  
flowScheduler.add(StPLoopEnd);  
const STTLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(STTLoopBegin, STTLoopScheduler);  
flowScheduler.add(STTLoopScheduler);  
flowScheduler.add(STTLoopEnd);  
const StnILoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(StnILoopBegin, StnILoopScheduler);  
flowScheduler.add(StnILoopScheduler);  
flowScheduler.add(StnILoopEnd);  
const StnPLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(StnPLoopBegin, StnPLoopScheduler);  
flowScheduler.add(StnPLoopScheduler);  
flowScheduler.add(StnPLoopEnd);  
const StnTLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(StnTLoopBegin, StnTLoopScheduler);  
flowScheduler.add(StnTLoopScheduler);  
flowScheduler.add(StnTLoopEnd);  
flowScheduler.add(GIns\_ARoutineBegin());  
flowScheduler.add(GIns\_ARoutineEachFrame());  
flowScheduler.add(GIns\_ARoutineEnd());  
const AILoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(AILoopBegin, AILoopScheduler);  
flowScheduler.add(AILoopScheduler);  
flowScheduler.add(AILoopEnd);  
const APLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(APLoopBegin, APLoopScheduler);  
flowScheduler.add(APLoopScheduler);  
flowScheduler.add(APLoopEnd);  
flowScheduler.add(A\_brkRoutineBegin());  
flowScheduler.add(A\_brkRoutineEachFrame());  
flowScheduler.add(A\_brkRoutineEnd());  
const ATLoopScheduler = new Scheduler(psychoJS);  
flowScheduler.add(ATLoopBegin, ATLoopScheduler);  
flowScheduler.add(ATLoopScheduler);  
flowScheduler.add(ATLoopEnd);  
flowScheduler.add(ThkRoutineBegin());  
flowScheduler.add(ThkRoutineEachFrame());  
flowScheduler.add(ThkRoutineEnd());  
flowScheduler.add(quitPsychoJS, ‘’, true);

Thank you so much for your help! Really appreciate it!

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 16, 2020, 10:22pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/6 "2020-06-16T22:22:40Z")

</div>

That looks like raw JS code. Please could you show the Python+JS code components you’ve added?

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 17, 2020, 2:33pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/7 "2020-06-17T14:33:33Z")

</div>

My apology. I did not add any code component for that part of the task which ran into error (St\_Prac). I added a python+JS code component for the first part of the task to give feedback:

if not key\_resp\_2.keys:  
msg2=“Failed to respond”  
elif key\_resp\_2.corr:  
msg2=“Correct!”  
else:  
msg=“Oops! That was wrong”

The feedback worked fine.

I also have the other code component that you have previously helped me to revise. But that is it.

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 17, 2020, 2:39pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/8 "2020-06-17T14:39:36Z")

</div>

If you are sure that the St\_Prac routine is the one creating the error and it doesn’t have a code component, perhaps you have some Python code in one of the components.

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 17, 2020, 3:16pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/9 "2020-06-17T15:16:21Z")

</div>

Hmmm, I will check again. I just uploaded my separate version of Stroop task onto pavlovia to pilot and I ran into the same error. This task does not contain any code component and iti s a replica of the part of the task that ran into error. I am a bit confused here, but I guess I will see if there is anything else that could’ve caused the error or if it could’ve be my computer or something. Anyway, thank you so much for your help!

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 17, 2020, 3:38pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/10 "2020-06-17T15:38:34Z")

</div>

Check Use PsychoPy Version is blank

That just took me an hour to solve this morning despite already being in my crib sheet

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 17, 2020, 5:24pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/11 "2020-06-17T17:24:08Z")

</div>

Thank you so much for your help. I am sorry that it took you so long time to help me. I am sorry but I am a bit confused, how do I resolve that issue. Very thankful for your help.

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 17, 2020, 5:41pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/12 "2020-06-17T17:41:14Z")

</div>

Sorry I meant that I spent an hour trying to solve a similar issue in a different experiment.

In PsychoPy go to your experiment options (the same page as where you set participant and version). Is there anything in the Use PsychoPy Version field?

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 17, 2020, 5:49pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/13 "2020-06-17T17:49:20Z")

</div>

![Screen Shot 2020-06-17 at 1.48.57 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/8/1/81b551cc72296aa9db275d0053e9606212f675fe.png)

This is the current field. Should I set it to a certain version?

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 17, 2020, 6:07pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/14 "2020-06-17T18:07:59Z")

</div>

No, it means you don’t have the same problem unfortunately.

What are the last messages in your console before it gets to the errors?

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 17, 2020, 6:43pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/15 "2020-06-17T18:43:16Z")

</div>

![Screen Shot 2020-06-17 at 2.41.48 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/5/7/5765b67eaa5685cfd0424519d5de67bbd6c153a7.png)

It looks like this way.

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 17, 2020, 7:29pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/16 "2020-06-17T19:29:34Z")

</div>

Cool. Please could you tell me more about the setting and use of the two dictionaries and variables listed (Trial, StInstruction, Number, Color, StFb)?

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 17, 2020, 9:58pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/17 "2020-06-17T21:58:35Z")

</div>

[StInst.xlsx](https://discourse.psychopy.org/uploads/short-url/3gsLWIl8AbbUxImsIN1TjDpouR0.xlsx) (8.9 KB)  
[StPrac.xlsx](https://discourse.psychopy.org/uploads/short-url/rAdR4dd7N9BcSAdMciCIk55x8A7.xlsx) (10.4 KB)

Hello,

Thank you again for your help.

The StInstruction consists of two elements, a keyboard and a text. There is a loop surrounding it such that the keyboard element takes the information from the StInst excel file. The keyboard allows any key to be entered.

After the instruction, it comes to the practice trials where there will be two text elements, one text element take information from the StPrac excel file. The color and the content of the text is also determined by the information extracted from the StPrac excel file. The other text element is constant throughout. The keyboard only allows four keys to be entered （‘b’,‘y’,‘g’,’r’).

As for the StFb, the trial include a text component and a keyboard component where the text is determined by the element from the StPrac excel file and the keyboard allows any entry of the key to end the routine.

Please let me know if this is the information that is needed. I apologize for bombarding you with the information. Thank you again for your help.

 ![Screen Shot 2020-06-17 at 5.43.53 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/a/9/a90dc02c11079c53cb4d4b31a6bbaaf62b6c388a.png)  
 ![Screen Shot 2020-06-17 at 5.44.03 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/8/9/8991277606c3575df41d1155aa281eb59f902458.png) ![Screen Shot 2020-06-17 at 5.44.18 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/1/c/1c63ddbbe3acc4f77a35680b17160c8799f84e55.png) ![Screen Shot 2020-06-17 at 5.44.28 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/2/8/289f51f97964daf7da0c1919af0d3112fa699a79.png) ![Screen Shot 2020-06-17 at 5.45.11 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/c/5/c5f1810f4c734fbc48771329ab34d47047f85143.png) ![Screen Shot 2020-06-17 at 5.45.23 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/d/a/da4ff69b575a38f473c902f93dce1e77505d7a95.png) ![Screen Shot 2020-06-17 at 5.45.30 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/7/8/781910c7644cd5afc5e508e1b80aea3dfcfca2b5.png) ![Screen Shot 2020-06-17 at 5.45.38 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/b/d/bd7f17906bf61057a8edaa834dc4d2d026aa928c.png) ![Screen Shot 2020-06-17 at 5.45.46 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/b/c/bc1ae79a4fd544edd2618e384aa20fd4df69a9f5.png) ![Screen Shot 2020-06-17 at 5.45.59 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/d/d/dd72d10e5e67c68657698e29437ed54252b47c32.png) ![Screen Shot 2020-06-17 at 5.46.07 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/0/a/0a73c940e95efdef2d2d5a8a337ea38193916d15.png)

---

<div class="post-metadata">

### Author: ![wakecarter](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/wakecarter/32/5753_2.png) [@wakecarter](https://discourse.psychopy.org/u/wakecarter)
#### Post date: [June 18, 2020, 10:30am UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/18 "2020-06-18T10:30:11Z")

</div>

I can’t see anything wrong there. Do you have any other code components apart from the feedback you mentioned earlier?

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 18, 2020, 6:31pm UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/19 "2020-06-18T18:31:40Z")

</div>

Not really. I only have code components for the feedback(which worked fine) and the code component that you helped me revised.

---

<div class="post-metadata">

### Author: ![Qiushan\_Liu](https://sea2.discourse-cdn.com/flex002/user_avatar/discourse.psychopy.org/qiushan_liu/32/6782_2.png) [@Qiushan\_Liu](https://discourse.psychopy.org/u/Qiushan_Liu)
#### Post date: [June 21, 2020, 12:39am UTC](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284/20 "2020-06-21T00:39:32Z")

</div>

Hello, I am sorry to bother you again, but it appears that this code you provided ran into an error. I am a complete newbie to javascript and coding in general, I am not sure where it went wrong, can you help me? Thank you so much!

 ![Screen Shot 2020-06-20 at 5.52.13 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/6/f/6f1b78bdd24a75fb1776090d1112fc138e4310c0.png) ![Screen Shot 2020-06-20 at 5.52.18 PM](https://us1.discourse-cdn.com/flex002/uploads/psychopy/original/3X/0/6/06fe3b5d54c28ffbe18d1d560eec641932f6febc.png)

[Next page](https://discourse.psychopy.org/t/error-with-online-experiment-stuck-on-initilising/14284.md?page=2)
