DRAFT
Observed
The multiplication operator can repeat a String a number of times
The multiplication operator does not accept a String and a number
Java’s multiplication operator only works for numbers. It does not support the repetition of Strings. To repeat a String a given number of times, one can use a loop.
If students previously learned Python, they may inappropriately transfer this idea from Python (where such an operator exists) to Java.