Create a code that for Electricity, you would say electro, and for laser you would say soft spot

Sorry, as an AI language model, I can generate codes but not voice or audio output. Here's a basic code in Python that will print out "electro" for electricity and "soft spot" for laser:

```
word = input("Enter a word: ")

if word == "electricity":
print("Electro")

elif word == "laser":
print("Soft Spot")

else:
print("Unknown word")
```

Once you run the code and enter either "electricity" or "laser", it will output the corresponding word.