diff --git a/libs/core/helpers.ts b/libs/core/helpers.ts index a5276a9a..811b792a 100644 --- a/libs/core/helpers.ts +++ b/libs/core/helpers.ts @@ -10,7 +10,7 @@ namespace Math { * Generates a `true` or `false` value randomly, just like flipping a coin. */ //% blockId=logic_random block="pick random true or false" - //% help=math/random-boolean color=230 + //% help=math/random-boolean export function randomBoolean(): boolean { return Math.random(2) == 0; }